Skip to content

Instantly share code, notes, and snippets.

@mindpalette
Created January 16, 2019 17:15
Show Gist options
  • Save mindpalette/3309cfeab4a255c9cd9c4a87a268bb13 to your computer and use it in GitHub Desktop.
Save mindpalette/3309cfeab4a255c9cd9c4a87a268bb13 to your computer and use it in GitHub Desktop.
Gravity Forms Pricing Options - Change Relative/Dynamic Price to Static Option Price
<script type="text/javascript">
// add as HTML field type in Gravity Forms
// source: https://docs.gravityforms.com/gform_format_option_label/#usage
function gform_format_option_label(fullLabel, fieldLabel, priceLabel, selectedPrice, price, formId, fieldId) {
priceLabel = " <span class='ginput_price'>" + gformFormatMoney(price) + '</span>';
return fieldLabel + priceLabel;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment