if you inspect my website vivereintenzionalmente.com you see two errors:
– can’t find variable jquery in notes-common-v2.js
– can’t find variable in admin-bar-v2.js
I read something about jquery related to generatepress and I am not sure if I need to do something.
I have bigfoot on mywebsite and the code is in my child function
function sg_add_bigfootscripts_yo() {
wp_enqueue_script( 'bigfoot.min.js', get_stylesheet_directory_uri() . '/js/bigfoot.min.js', array('jquery'), false, false );
}
add_action( 'wp_enqueue_scripts', 'sg_add_bigfootscripts_yo' );
function sg_add_head() { ?>
<script type="text/javascript">
jQuery.bigfoot();
</script>
<?php }
add_action( 'wp_head', 'sg_add_head' );