cncladmin
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image by URL] Images not resizing for thumbnailsI apologize I sent this message to the wrong plugin. I meant to contact “Featured Image from url,” not you guys. Please disregard this message.
Thanks,
parisHi Michael,
You solved the problem! I went back to the php file and I must have somehow accidentally clipped off a couple of characters when I copied it. I repaired it and problem solved! I apologize for taking your time with my silly mistake.
Forum: Plugins
In reply to: [Calculated Fields Form] Assign value to input “number” fieldI worked out the solution to this problem out on my own (I found another message in your forum that answered the question), and it’s working great. So no need to respond.
However, a different question: Now that I upgraded to “pro” version, the “Security” field automatically shows up on the bottom of the forms, and I can’t work out how to turn it off (I’d prefer not to have it since it’s not necessary for the way I’m using these forms).
Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Change font within calculated field functionPerfect! Thanks again for such quick (and useful!) responses. If I could give you another 5-star rating, I would; but instead I’ll upgrade to the “pro version” which I imagine you would prefer anyway 🙂
Forum: Plugins
In reply to: [Calculated Fields Form] thousands separator comma disappearedPerfect! Thanks so much,
ParisForum: Plugins
In reply to: [Calculated Fields Form] thousands separator comma disappearedThanks for your very quick reply.
Your solution works great for this particular field; however, I have other fields that have a slightly more complicated equation, and it doesn’t appear that this solution will work for those, which are all similar to the following:
(function(){
if(fieldname11==”Vegan” && fieldname12==”Metric”) return ROUND(((fieldname3*365)+(fieldname2*30)+fieldname8)*2.488)+” kg”;
if(fieldname11==”Lacto-ovo Vegetarian” && fieldname12==”Metric”) return ROUND(((fieldname3*365)+(fieldname2*30)+fieldname8)*1.531)+” kg”;
if(fieldname11==”Vegan” && fieldname12==”Imperial”) return ROUND((((fieldname3*365)+(fieldname2*30)+fieldname8)*2.488)*2.2)+” lb”;
if(fieldname11==”Lacto-ovo Vegetarian” && fieldname12==”Imperial”) return ROUND((((fieldname3*365)+(fieldname2*30)+fieldname8)*1.531)*2.2)+” lb”;
})();
…this is because the “symbol to display at the end of the field” is different depending upon the conditions (“lb” vs. “kg” depending upon whether the person selected “imperial” or “metric”). Do you know how I can insert the thousands separators into these figures while still allowing for the conditional “display at the end of the field.”
…btw, I apologize for not giving more info on the url. To see the table, go to the bottom of this page: http://cncl.org.nz/plant-based/
Thanks,
ParisForum: Plugins
In reply to: [Category Posts Widget] Change background color of titleThank you, Daniel. The “widget-title” suggestion did the trick for me. I’m still quite new to working with css and html, but I’m starting to get the hang of it now.