Hi,
Thanks for your interest in my plugin. Can you provide your website URL?
Thanks!
the url is http://umass.metricdesign.net/graduate-student-programs/ towards the end with the four pictures.
Thanks for the response!
Hi,
It seems it’s an issue with the Ultimate Addons for SiteOrigin which uses either a modified Owl Carousel or an outdated version since it’s overwriting the Owl Carousel markup present in my plugin. I’ve tested it on my local development machine and can confirm the behavior.
You could add the following to your functions.php to use my version of Owl Carousel plugin:
add_action( 'wp_enqueue_scripts', 'wporg_enqueue_scripts' );
function wporg_enqueue_scripts() {
wp_dequeue_script( 'owl-js' ); // Dequeue Ultimate Addons for SiteOrigin Owl Carousel script
}
Thanks!
-
This reply was modified 7 years, 6 months ago by
FrodoBean. Reason: Added additional information
Hi,
If the previous code doesn’t work, please try the updated code:
add_action( 'wp_footer', 'wporg_enqueue_scripts' );
function wporg_enqueue_scripts() {
wp_deregister_script( 'owl-js' );
wp_dequeue_script( 'owl-js' ); // Dequeue Ultimate Addons for SiteOrigin Owl Carousel script
}
Also, just a caution it will break widgets from Ultimate Addons for SiteOrigin that uses the Owl Carousel script (e.g. Testimonial Widget).
-
This reply was modified 7 years, 6 months ago by
FrodoBean.
it is working now. thanks a lot!
You’re welcome. If you have time please rate the plugin :).
Thanks!
-
This reply was modified 7 years, 6 months ago by
FrodoBean.