Okay
  Public Ticket #1272511
Testimonial Slider Not Switching
Closed

Comments

  • OpenIntro started the conversation

    My testimonial slider doesn't seem to be playing. I can manually move to the next testimonials, but It doesn't autoplay. I don't see a setting to make it go. Any ideas?

  • OpenIntro replied

    Just touching base on this again.

  •  2,010
    Ocean replied

    Hi,

    open file wp-content/plugins/ot_composer/function/shortcodes.php

    find "testslide"

    then change code

    <script type="text/javascript">
        jQuery(document).ready(function() {
    'use strict';
    jQuery("#<?php echo esc_attr($id); ?>").owlCarousel({
       items : <?php echo esc_attr($visible1); ?>,
    itemsDesktop : [1199,1],
    itemsDesktopSmall : [980,1],
       itemsTablet: [768,1],
       itemsTabletSmall: false,
       itemsMobile : [479,1],
       navigation : false,
    autoHeight : true,
       });
    });
        </script>

    to

    <script type="text/javascript">
        jQuery(document).ready(function() {
    'use strict';
    jQuery("#<?php echo esc_attr($id); ?>").owlCarousel({
       items : <?php echo esc_attr($visible1); ?>,
    autoPlay: 3000, //Set AutoPlay to 3 seconds
    itemsDesktop : [1199,1],
    itemsDesktopSmall : [980,1],
       itemsTablet: [768,1],
       itemsTabletSmall: false,
       itemsMobile : [479,1],
       navigation : false,
    autoHeight : true,
       });
    });
        </script>