2ndbeeston
Forum Replies Created
-
Hi EDGARROJAS
I am currently having difficulty getting into my account to open a ticket.
Am currently away from home and only have phone with me which has limited info.
I cannot recall which email account i used for account with you. Have tried password resets on ones i commonly use.
Are you able to send me which email account i used?
Thanks
@jenwebdev thanks for this.
This site is running on PHP version 7.4.30.
Is there a way to get support for what seems to be a fundamental problem?
This does need addressing quite promptly. Not urgent yet, but will become urgent.I have made a copy of the form that uses an inputted value rather than the one that is calculated from the inputted and multiplied to get a value to cover trnsactions fees.
How do I make a calculation that provides an acceptable figure for Stripe transaction?Can we change the phrasing of this please?
The use of the word ‘nonce’ has a very unfortunate meaning in English vernavular kanguage,Hi
Taking a different tack after looking at soem other forum responses:
https://www.ads-software.com/support/topic/get-checkbox-value/Now trying checkboxes, but still get a validation error on first line
“SyntaxError: identifier starts immediately after numeric literal”if($$field_RaceCheck1$$.Ischecked(‘horse 1’)(TotalValue = 1}
else(TotalValue = 0}
if($$field_RaceCheck1$$.Ischecked(‘horse 2’)(TotalValue = TotalValue+1}
if($$field_RaceCheck1$$.Ischecked(‘horse 3’)(TotalValue = TotalValue+1}
if($$field_RaceCheck1$$.Ischecked(‘horse 4’)(TotalValue = TotalValue+1}
if($$field_RaceCheck1$$.Ischecked(‘horse 5’)(TotalValue = TotalValue+1}
$$field_TotalValue$$.value = TotalValueHave tried this as a first stab at the formula for the Stripe value.
Can’t figure out why it returns the error “SyntaxError: identifier starts immediately after numeric literal” on validationTotalValue = 0;
if($$field_race1$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race2$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race3$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race4$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race5$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race6$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race7$$.value >= 0){TotalValue = TotalValue+1;}
if($$field_race8$$.value >= 0){TotalValue = TotalValue+1;}
if (TotalValue > 0){return TotalValue;}- This reply was modified 3 years, 2 months ago by 2ndbeeston.