• Resolved thebigdu

    (@thebigdu)


    I would like to have two Responsive sliders on my homepage. The sliders appear and transition correctly, but I would like know if it is possible to have a start delay from page load on one slider so that the two sliders do not transition at the same time, but rather offset by 2 seconds. Thank you.

    http://wordpress.org/plugins/ml-slider/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi thebigdu,

    Responsive slides doesn’t seem to have a start delay type parameter, which is what you need by the sounds of it.

    Flex Slider on the other hand has an ‘initDelay’ parameter as documented here: https://github.com/woothemes/flexslider

    To specify the initDelay parameter you’ll need to add something like this to your themes functions.php file:

    function metaslider_flex_params($options, $slider_id) {
        if ($slider_id == 123) { // change 123 to the slideshow ID to be delayed
            $options['initDelay'] = 1000;
        }
        return $options;
    }
    add_filter('metaslider_flex_slider_parameters', 'metaslider_flex_params', 10, 2);

    ^ That code is untested as we only usually cover bugs as part of free support, but it should work. If you require further support (about custom functionality) please consider upgrading to Meta Slider Pro and raise a ticket with us.

    Regards,
    Tom

    Thread Starter thebigdu

    (@thebigdu)

    Tom,

    Thank you very much for your help. I switched my sliders to Flex, but when I insert the function code into functions.php, the code text is displayed at the very top of my dashboard and website. It has no effect on the slider itself. Should the code maybe be inserted into another file?

    I am using the Responsive Free theme.

    Thanks again,
    Brian

    Hi Brian,

    Please make sure the code is above the last ?> in the file, it sounds like it’s not located within a <?php …. ?> ‘block’.

    Regards,
    Tom

    Thread Starter thebigdu

    (@thebigdu)

    That works, thanks very much Tom!

    Cool 🙂

    Please consider leaving a review if you get a minute.

    Regards,
    Tom

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Time delay of multiple sliders on one page’ is closed to new replies.