KaraDesigns
Forum Replies Created
-
@andrewza I’m such an idiot. That was definitely the issue. Thanks so much!
Ok, I’ll do that. Thank you.
Thank you @kimwhite . Sorry for the late reply, but I appreciate your help.
Forum: Plugins
In reply to: [Calculated Fields Form] Unable to upload .docx filesOk thanks. I’ll do that.
Forum: Plugins
In reply to: [Popups for Divi] How to trigger Popup with a URL linkI seemed to have gotten 2 links to work, but the others don’t. My website is https://fredericablackevents.com/experiences/
Is anyone able to assist me?
Thanks.
Oh no, you’re right @piratepenpen … Thank you!
Hi @laceyrod, thanks so much for responding! Take a look here: https://snipboard.io/oSeLRK.jpg
- This reply was modified 3 years, 6 months ago by KaraDesigns.
Forum: Plugins
In reply to: [Calculated Fields Form] Styling Radio Button Label issuesHmmm, ok. Thank you for everything. I truly appreciate all your help!
Forum: Plugins
In reply to: [Calculated Fields Form] Styling Radio Button Label issuesThis is the website: https://topscholarsediting.com/front-page/
Forum: Plugins
In reply to: [Calculated Fields Form] Styling Radio Button Label issuesEeks,
Something else I am stuck on. I added a new checkbox field. If it checked off, then an additional $50 would be added to the total (Fieldname5). I thought adding this code to the end of entire set equation would work:
if(fieldname13 == ‘Formatting’) return 50 + fieldname5;
But it does not. Is it because I have to create a new Calculated Field to accomplish this? Or is there an easier way to add that?
Also, I purchased the professional version of plugin. But it’s giving me issues such as some fields are not showing on the website – specifically fieldname13. But it appears on the preview form. I’ve ensured to disable the mentioned cache feature.
Forum: Plugins
In reply to: [Calculated Fields Form] Styling Radio Button Label issuesaaaah. Awesome, thank you!
Got it! Thank you!
WOW! Thank you so much. You rock!
So sorry if I am not explaining it properly. But you definitely got what I am trying to say. Thank you so much!
There’s 1 last thing (I hope). I need the number to round to only 2 decimals. I’ve added “PREC” in the code below, however, its still not showing me the 2 decimals:
(function(){
if(fieldname2 == ‘Editing & Proofreading’ && fieldname3 == ‘1 Week’)
{
if(fieldname7 < 1000) return PREC(0.04 * fieldname7);
if(fieldname7 < 2000) return PREC(0.05 * fieldname7);
return PREC(0.06 * fieldname7);
}
})()What if I wanted to add this dependency:
“If value is less than 1000”To this script:
if(fieldname3 == ‘1 Week’) return 0.04 * fieldnameHow would it look?