Skip to content

Instantly share code, notes, and snippets.

@jetsloth
Last active June 10, 2021 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jetsloth/5219e8e57ec06ae719e38ed0fc6363e6 to your computer and use it in GitHub Desktop.
Save jetsloth/5219e8e57ec06ae719e38ed0fc6363e6 to your computer and use it in GitHub Desktop.
Using gform_format_option_label together with Image Choices
<script type="text/javascript">
window.gform_format_option_label_original = window.gform_format_option_label;
window.gform_format_option_label = function(fullLabel, fieldLabel, priceLabel, selectedPrice, price, formId, fieldId, index) {
// Update any of the variables to format, Eg;
// priceLabel = "";
return window.gform_format_option_label_original(fullLabel, fieldLabel, priceLabel, selectedPrice, price, formId, fieldId, index);
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment