Okay
  Public Ticket #1491405
Testimaonial section
Closed

Comments

  • ASEECD started the conversation

    Hello,


    Is there a was to make the testimonial section a slider? Would like it so slide every 10 seconds instead of clicking.

    thanks

  •  2,009
    Ocean replied

    Hello,

    Please replace js code in your blessing-custom.js file (path: wp-content\themes\blessing\assets\js\):

    Old code:

    $(".testi-carousel").owlCarousel({
            singleItem: true,
            lazyLoad: true,
            navigation: false
        });
    

    Replace to new code:

    $(".testi-carousel").owlCarousel({
            singleItem: true,
            lazyLoad: true,
            navigation: false,
            autoPlay : 10000, // 1 second = 1000
            transitionStyle : 'fade', // Remove this line, if not want using slider fade effect.
        });
    

    Thank you