Speeding up 'Partners' widget

Home Forums Jevelin Theme Speeding up 'Partners' widget

Home Forums Jevelin Theme Speeding up 'Partners' widget

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    RESOLVED Posts
  • grammakov
    Participant

    Hey guys. The theme is AMAZING. Thank you so much.

     

    I am wondering whether it’s possible to increase the slider speed for Partners block (where we show logos of our clients on a grey background). If there’s no conventional to it I can dig into the code no problem, just tell me where to look. Thanks!

    Hi @grammakov,

     

    I hope you are well today and thank you for your question.

     

    I am not sure which content element you are using to create partners block so could you please share me your site URL where it’s displaying so that i can help you to achieve it?

     

    Best regards,
    Shufflehound team

    grammakov
    Participant

    Site is in maintenance mode.

    You can find the widget here: https://jevelin.shufflehound.com/elements/partners/

     

    Image attached. The slider speed is too slow, I need to speed it up a notch! Thanks!

    Attachments:
    You must be logged in to view attached files.

    gualonge
    Participant

    I have the same problem.

    Please Help us!

    Solution for this topic

    Currently there isn’t any theme settings to control its speed but in the theme file /js/scripts.js you will find following code and you can change its speed by changing the value of autoplaySpeed: 5000

     

        /* Partners Carousel */
        $('.sh-partners-carousel').each( function() {
            var partner_carousel_columns = parseInt( $(this).attr('data-id') );
            var partner_carousel_columns_responsive1 = partner_carousel_columns;
            var partner_carousel_columns_responsive2 = 2;
    
            if( partner_carousel_columns > 4 ) {
                partner_carousel_columns_responsive1 = 4;
            }
    
            if( partner_carousel_columns == 1 ) {
                partner_carousel_columns_responsive2 = 1;
            }
    
            $(this).slick({
                infinite: true,
                dots: false,
                arrows: false,
                slidesToShow: partner_carousel_columns,
                slidesToScroll: 1,
                autoplay: true,
                autoplaySpeed: 5000,

     

    Please note you are making changes in the theme files therefore you have to make these changes again after theme updation as changes made in the theme files get lost on theme updation.

    grammakov
    Participant

    ??

    🙂

    In the following latest version of Jevelin theme you can change Partners widget speed from its settings as shown in the attached screenshot.

     


    Please login to access this file

    Attachments:
    You must be logged in to view attached files.
Viewing 8 posts - 1 through 8 (of 8 total)