ReferenceError: gvGlobals is not defined

If for some reason you're experiencing this Javascript error message on your Browser's console, that probably means your theme is not calling the wp_footer() function on its footer.php file.

If that's the case, then you'll need to edit that file using the theme editor inside your WordPress website and add that function:

WordPress Theme Editor showing code in footer.php, highlighting adding "<?php wp_footer(); ?>" near the end

If your theme already has the call to the wp_footer() function and you are still seeing that error message on the Browser console, then you must add this line of code before it:

do_action('wp_print_footer_scripts');

That will force your theme to properly print the Javascript code needed for GravityView to work properly.

Here's what it'll look like:

Code editor showing a footer.php file with a highlighted code block for WordPress footer scripts

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us