jQuery not enqueued properly
-
Just wanted to let you know that your plugin is not enqueuing jQuery properly and it doesn’t work, at least in my case. The player is not being loaded and I get a jQuery not found error in the console. I am using the GeneratePress theme and I had to force jQuery like this for the plugin to work:
add_action( 'wp_enqueue_scripts', 'gm_load_jquery' ); function gm_load_jquery() { wp_enqueue_script( 'jquery' ); }
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘jQuery not enqueued properly’ is closed to new replies.