Table Of Contents
Description
This hook can be used to disable the loading animation in the summary whenever a change in the form happens.
Parameters
enableAnimation | Bool (defaults to true)
form_id | Int
Return
Boolean. Return true to show the total
Usage
Copy the below code to a HTML field inside your form or use the Code chest plugin
<script type="text/javascript">
if ( typeof gform !== "undefined" ) {
gform.addFilter("gotrgf_display_loading_animation", function(includeOptionPrice, formId) {
return false;
});
}
</script>
