I have two issues which are appearing within my Chrome browsers console.
FYI, I am using WordPress 3.9, Gravity Forms 1.8.8 and WooCommerce Gravity Add On (latest).
Basically, when I am going into one of my products on my site (sorry, only have it running local on my machine), I am receiving the following two errors:
Error 1: Uncaught ReferenceError: gform is not defined
Error 2: Uncaught ReferenceError: gformCalculateTotalPrice is not defined
FYI, I am using the WooCommerce
Gravity Forms Add On but am not using any pricing fields at all within my Gravity forms.
I am not sure how to track down why these errors are occurring or how to prevent them from occurring.
[product_page]
WooCommerce shortcode to show a product on the homepage – Yumacode
if (typeof gform !== 'undefined'){ gform.addFilter('gform_product_total', function(total, formId) { return update_dynamic_price(total); }); }code
– Fears