Dear Customers! We're out of the office from the 6th of October to the 11th of October. We sincerely apologize for the inconvenience. For WordPress 5.5.* related issues, please visit this article

Okay
  Public Ticket #2003413
Testimonials carousel
Closed

Comments

  • Simbad started the conversation

    Hello, 

    How can I slow down Testimonials carousel animation? It's too fast for some text I use on that place?

    Kindest regards, 

    Sinisa S.

  •  361
    Filip replied

    Hello there!

    Well, it can be done by altering the theme's /js/jquery.custom.js file:

    jQuery(".clients").owlCarousel({
            items : 3,
            // Responsive Settings
            itemsDesktop : [1169,3],
            itemsDesktopSmall : [979,3],
            itemsTablet : [768,2],
            itemsTabletSmall : false,
            itemsMobile : [479,1],
            // End Responsive Settings
            mouseDrag : false,
            pagination : true,
            navigation : false,
            touchDrag : true,
            stopOnHover: true,
            slideSpeed : 400
        });
    

    and change it to:

    jQuery(".clients").owlCarousel({
            items : 3,
            // Responsive Settings
            itemsDesktop : [1169,3],
            itemsDesktopSmall : [979,3],
            itemsTablet : [768,2],
            itemsTabletSmall : false,
            itemsMobile : [479,1],
            // End Responsive Settings
            mouseDrag : false,
            pagination : true,
            navigation : false,
            touchDrag : true,
            stopOnHover: true,
            slideSpeed : 600,
            paginationSpeed = 1200;
        });
    

    The "slideSpeed" and "paginationSpeed" values are something you might want to adjust to your needs.smile.png

    Kind Regards,
    Veented Team

  • Simbad replied

    Hello Filip, 

    Thank you for information. 

    However, I have changed that, but nothing is different. Are you really sure I have to change that part and not this block (?): 

    /* ==============================================
    FLEX SLIDER FOR TESTIMONIALS
    =============================================== */

        jQuery('.testimonials').flexslider({
            animation: "fade",
    selector: "ul.text-slider li.text",
    controlNav: false,
    directionNav: true ,
    slideshowSpeed: 5000,
            start: function(slider){
            jQuery('body').removeClass('loading');
            }
         });

         var $wpAdminBar = jQuery('#wpadminbar');
         if ($wpAdminBar.length) {
          jQuery("#navigation-sticky").sticky({topSpacing:$wpAdminBar.height()});
         } else {
          jQuery("#navigation-sticky").sticky({topSpacing:0});
      }


    I have to change TESTIMONIALS slider, and that's Flex slider, as I can see from the code in theme. 

    Kindest regards, 

    Sinisa S.


  •  361
    Filip replied

    Hello there,

    We've actually just uploaded a new theme update into the ThemeForest review queue that comes with brand new Carousel/Slider settings for many elements, including the Testimonials Carousel. It will allow you to change the carousel speeds directly in the page builder element settings. It should be released by tomorrow.smile.png

    You are right about that part of the code, though. It was my bad call. However, the new update works perfectly with both carousel styles.smile.png

    Kind Regards,
    Veented Team

  • Simbad replied

    Thank you very much Filip. I will check theme update tomorrow. 

    Kindest regards, 

    Sinisa S.

  •  361
    Filip replied

    You're welcome! The update is already there.smile.png

    Kind Regards,
    Veented Team