alphagoldafrica
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Block something from being sent on emailThank you ??
Forum: Plugins
In reply to: [Calculated Fields Form] Block something from being sent on emailIts only one field (fieldname28) I don’t want to send on email to the user. Is there a simple code to apply to exclude only one field?
Thank you,
Forum: Plugins
In reply to: [Calculated Fields Form] Need help with a conditional formulaAbsolutely splendid! Wow…thank you very very much. Amazing :-). You are indeed a star
Forum: Plugins
In reply to: [Calculated Fields Form] Need help with a conditional formulaThank you,
I have two calculated fields. One calculated field calculates the value as follows:
(function(){
if(fieldname8==’Hawker HS800xp’){
if(fieldname9 == ‘An Aircraft’) return 5000;
else return fieldname29*1000;
}
/** Here the other conditional statements **/
if(fieldname8==’Challenger CL604′){
if(fieldname9 == ‘An Aircraft’) return 6000;
else return fieldname29*750;
}
/** Here the other conditional statements **/
if(fieldname8==’Other Private Jets’){
if(fieldname9 == ‘An Aircraft’) return 1;
else return fieldname29*1;
}
/** Here the other conditional statements **/
})()The second calculated field is the auxiliary field you recommended above with dependencies.
(function(){
var result = 0
if(fieldname9 == ‘A Seat’){
if(fieldname8 == ‘Hawker HS800xp’) result = 1;
else result = 2;
}
return result;
})()The price for ‘A Seat’ is not calculated with the auxillary field. What’s wrong?
Forum: Plugins
In reply to: [Calculated Fields Form] From Processing / Email SettingsThank you very much
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of submit and next/previous buttonsThank you very much
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of submit and next/previous buttonsThank you
The formula above changes the font color. I would like to keep the font color white but change the color of the next/previous and submit buttons from blue to red #ff1d00.
The form now has a submit button ??
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of submit and next/previous buttonsThank you,
The code I used is as follows:
#fbuilder .pbSubmit { color: #ff1d00; font-weight: bold; }
#fbuilder .pbNext,#fbuilder .pbPrevious {color: #ff1d00;font-weight: bold;}
I called my submit button “Book Flight” and its on the second page
Thank you
Forum: Plugins
In reply to: [Calculated Fields Form] Fields for country and addressThank you,
Forum: Plugins
In reply to: [Calculated Fields Form] Change color of templateThank you very much!
Forum: Plugins
In reply to: [Calculated Fields Form] Book a seatThank you very much. You are very helpful. I got the formula correct:-)
Forum: Plugins
In reply to: [Calculated Fields Form] Submit Button on formsI will certainly buy the plugin. Thank you
Forum: Plugins
In reply to: [Calculated Fields Form] Book a seatI tried adding the following formula beneath the formula you gave me above but it did not work. Where have I gone wrong?
if(fieldname8==’Challenger CL604′){
if(fieldname9 == ‘An Aircraft’) return 6000;
else return fieldname12*750;If a user selects the Challenger in field 8 and chooses an “An Aircraft in field 9, I would like the calculation field to give 6000 but if a seat is booked, I would like the calculation field to give field 12 * 750
Thank you,
Forum: Plugins
In reply to: [Calculated Fields Form] Submit Button on formsI am sorry if I have confused you.
The “Submit” button on my form is actually called “Book Flight”
Thank you,
Forum: Plugins
In reply to: [Calculated Fields Form] Improve design of formThank you so much. I am super thrilled. Thank you
I would like to stretch the date and time field across the row.
Currently the time is shown under the date but I would like to sit next to or adjacent to the date.
How do we achieve this?
Thank you so much