• I need to change the Testimonial’s slider speed to something slower since the text can’t be read in time before it changes. I am using Elementor as editing tool.

    I found some topics about this, but it seems something change over the versions since nothing i tried worked. There is no more “autoplay time” option that i can find and i even tried to edit main.js following other suggestion but to no avail.

    How can i change the testimonial’s slider speed?

    My version is 1.52.

    Thanks, absolutely great template, probably will upgrade to pro in the near future.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello there,

    To override the default testimonials slider’s JS script, you’d need to do the below steps:

    1. Install and activate the TC Custom JavaScript plugin
    2. Go To Appearance > Custom JavaScript
    3. Paste the following code into the provided box

    
    (function($){
    
      if ( $().owlCarousel && $('.widget_sydney_testimonials .roll-testimonials').length ) {
          $('.widget_sydney_testimonials .roll-testimonials').owlCarousel({
              items: 2,
              itemsDesktop: [3000,2],
              itemsDesktopSmall: [1400,2],
              itemsTablet:[970,2],
              itemsTabletSmall: [768,1],
              itemsMobile: [360,1],
              autoPlay: $('.roll-testimonials').data('autoplay'),
              slideSpeed : 400, // Default 200
              paginationSpeed : 800,
              rewindSpeed : 1000,
          });
    
      }
    
    })(jQuery);
    

    For slide speed, adjust the value of slideSpeed

    
    slideSpeed : 400, // Default 200
    

    4. Update

    Regards,
    Kharis

    Thread Starter hazardluxian

    (@hazardluxian)

    Thanks for the reply!

    I did what you said and i could change the speed of the pagination, it worked, but the slider doesn’t change at all. I even put some absurd value like 500000 to see if the thing just wouldn’t move, but to no avail, the speed is the same in every update i made.

    Thanks for helping me, i really hope we can fix this.

    Hello there,

    Have you flushed any applied cache in your site?

    Viewing the source code of your homepage, the suggested code didn’t appear. Please re-enter it and keep it remains to allow me debug with my web browser.

    Regards,
    Kharis

    Thread Starter hazardluxian

    (@hazardluxian)

    Sorry man, did just now, put the exact code you sent me, except the “slidespeed” that i went full berserk and put:

    slideSpeed : 40000, // Default 200

    I though it wouldn’t be a problem of cache since the option for the pagination speed worked.

    Thanks again!

    Thread Starter hazardluxian

    (@hazardluxian)

    Sorry to bother, but can you try to help me out with this? I really would like to fix it. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change testimonials slider speed’ is closed to new replies.