Hi there, a configurator of ours recently stopped working like it should after updating gravity forms. I have a product options field (with prices) that is dynamically populated by a filter. It all works well except for when you select the options on the front end, the total does not update at all, it does register the price when you submit the form but it does not show the user what the real time total is.
Before the update i had no problems with this, it would just update the price in real time, any ideas on how to solve this, or maybe as a work around, how do i recalculate the total price with javascript/jquery after a checkbox is changed?
Thank you for the information, but do you have another solution to work around the bug? Right now, calling the gform_post_render fixes the issue where the total calculation doesn’t update when the user changes the quantity they want in a dynamically added “product” field.
@user5e43bf61be58e830 try updating your code to also check if the filter is running in an Ajax request, e.g. if ( ! is_admin() || ( wp_doing_ajax() && rgpost( 'action' ) === 'gform_get_config' ) ) {
The 2.9 and newer form scripts use an Ajax request to get the meta (a selection of the field properties) for pricing fields, running the gform_pre_render filter first. If the pricing fields in the form provided during that request don’t match those used to render the form, the total can fail to update.
I tried applying this. It does not work but it does seem to give me a javascript error:
Uncaught (in promise) TypeError: Cannot read properties of null (reading ‘filter’)
at s (gform-products.3520fd9adc305248af9a.min.js:1:870)
at gform-products.3520fd9adc305248af9a.min.js:1:1636
at Array.forEach ()
at m (gform-products.3520fd9adc305248af9a.min.js:1:1595)
at gform-products.3520fd9adc305248af9a.min.js:1:1340
at Array.forEach ()
at h (gform-products.3520fd9adc305248af9a.min.js:1:1255)
at gform-products.3520fd9adc305248af9a.min.js:1:3041
at Array.forEach ()
at gform-products.3520fd9adc305248af9a.min.js:1:2855
This error is fixed in the latest hotfix version, 2.9.4.1, which is available from your support account. Once updated, you need to clear the caches of any caching/optimization solutions the site is using along with your browser cache.
This was resolved by updating the populate_posts2 function to populate the global post variable during the Ajax request, so it is available to the ACF have_rows function.