Video not playing after update
-
Hello,
After updating the plugin, my self-hosted video stopped playing.
After checking, it appears that the awb.min.js script is not loading.AWB Version: 1.12.11
WordPress 7
The assets/awb/awb.min.js script is not queued on the front end
Workaround while waiting for a fix via wp_enqueue_scripts in functions.phpadd_action( ‘wp_enqueue_scripts’, function() {
if ( ! is_admin() ) {
wp_enqueue_script(
‘nk-awb’,
WP_PLUGIN_URL . ‘/advanced-backgrounds/assets/awb/awb.min.js’,
array( ‘jarallax’, ‘jarallax-video’ ),
null,
true
);
}
});
You must be logged in to reply to this topic.