Getting Gravity Errors at WooCommerce Site

I hope you can help with my two problems that appear in my Chrome browsers console.

FYI, I am using WordPress 3.9 | Gravity forms 1.8.8 | WoCommerce Gravity Add On (last).

Basically, when I log into one of my products on my site (sorry, it only works locally on my machine), I get the following two errors:

Error 1 : Uncaught ReferenceError: gform is not defined

Error 2 : Uncaught ReferenceError: gformCalculateTotalPrice is not defined

It is these two errors that need help, because I'm not sure why they occur.

FYI, I use WooCommerce Gravity Forms Add On, but I don’t use any pricing fields at all in my Gravity forms.

Truly appreciate any help you can help me to find out why these errors occur and how to prevent them from occurring.

+7
javascript jquery woocommerce gravity-forms-plugin
source share
1 answer

You must define the jquery section in the header.

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> 

I ran into the same issue with Gravity Forms and WooCommerce after initializing jquery in the header section, which is resolved for me.

So, I think you should initialize jquery in the header section.

0
source share

All Articles