• Resolved KimCheeZZ

    (@kimcheezz)


    Hi,

    First of all, thanks for such a great plugin.

    I am having trouble making the navigation arrows to show on the carousel widget. Can you help? I have checked the option inside of the widget but nothing changes.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author FrodoBean

    (@frodobean)

    Hi,

    Thanks for your interest in my plugin. Can you provide your website URL?

    Thanks!

    Thread Starter KimCheeZZ

    (@kimcheezz)

    the url is https://umass.metricdesign.net/graduate-student-programs/ towards the end with the four pictures.

    Thanks for the response!

    Plugin Author FrodoBean

    (@frodobean)

    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, 2 months ago by FrodoBean. Reason: Added additional information
    Plugin Author FrodoBean

    (@frodobean)

    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, 2 months ago by FrodoBean.
    Thread Starter KimCheeZZ

    (@kimcheezz)

    it is working now. thanks a lot!

    Plugin Author FrodoBean

    (@frodobean)

    You’re welcome. If you have time please rate the plugin :).

    Thanks!

    • This reply was modified 7 years, 2 months ago by FrodoBean.
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘carousel natvigation’ is closed to new replies.