Hello,
I am using this function to try and format my labels on a multi-page form with products and product options. There are five products and three options for each product. The form is five pages long.
function gform_format_option_label(fullLabel, fieldLabel, priceLabel, selectedPrice, price, formId, fieldId){
var zLabel = fieldLabel + ' +$' + price;
return zLabel;
}
This gives me the Label and the price that I want, but the price repeats three times.
How can I avoid the multiple prices?
What I am trying to do is to override the default behavior that changes the option pricing dynamically next to the option when you select the option.
Thank you for any help you can offer.