Gravity forms – Can I have multiple custom spinners? [closed]

Without testing, this should work (still use the add_filter bit): function cwwp_custom_gforms_spinner( $src ) { global $post; if( $post->ID == $id ): // use whatever page identifier/conditional you like here: ID, template used, slug etc. // other identifiers would probably be better and won’t rely on global $post // for example is_front_page(), is_archive(), etc return … Read more

Update post using gravity forms 2019 solution

I found a solution to fix this issue on the plugin Github page. It’s not ideal, but a work around until Gravity Forms makes this a core feature. https://github.com/jupitercow/gravity-forms-post-updates To fix the error and allow the plugin to be installed, you have to change… row 1021 in file gravityforms-update-post.php from (version 1.2.17)… add_filter( ‘gform_field_value_’ . … Read more

gravity forms : use previous dropdown choice as variable in gform_pre_render? [closed]

Eventually the solution I used was this. Upon change of Dropdown A I have an ajax function request tha re-populated Downdown B with the filtered options based on the selection in Dropdown A. See the ajax jquery script… countryFilter = function () { var countryClass=”.dealer-country select”, dealerClass=”.dealer-name select”; $(countryClass).change(function(){ var countrySelect = $(this), country = … Read more