Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,
    You can rewrite in your child theme for Duena file slider.php and add needed parameters to slider initialization (it located at bottom of slider.php in <script> tag).
    Speed parameters is:
    slideshowSpeed – Integer: Set the speed of the slideshow cycling, in milliseconds
    animationSpeed – Integer: Set the speed of animations, in milliseconds

    Thread Starter despina.mina

    (@despinamina)

    i should to add him or to change him at slider.php?
    At the bottom there is </script>.Beside i have added slideshowSpeed – Integer:3000
    and the slider not displayed.
    thank you

    This code must looks like:

    <script type="text/javascript">
    /* <![CDATA[ */
        jQuery(window).load(function() {
            jQuery('.flexslider').flexslider({
                animation: "<?php if (of_get_option('sl_effect') != '') { echo of_get_option('sl_effect'); } else { echo 'fade'; }; ?>",
                direction: "<?php if (of_get_option('sl_direction') != '') { echo of_get_option('sl_direction'); } else { echo 'horizontal'; }; ?>",
                slideshow: <?php if (of_get_option('sl_slideshow') != '') { echo of_get_option('sl_slideshow'); } else { echo 'true'; }; ?>,
                controlNav: <?php if (of_get_option('sl_control') != '') { echo of_get_option('sl_control'); } else { echo 'true'; }; ?>,
                directionNav: <?php if (of_get_option('sl_direction_nav') != '') { echo of_get_option('sl_direction_nav'); } else { echo 'true'; }; ?>,
                slideshowSpeed: 7000,
                animationSpeed: 500
            });
        });
    /* ]]> */
    </script>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘slider speed’ is closed to new replies.