Title: stop slide movement
Last modified: April 30, 2021

---

# stop slide movement

 *  Resolved [db151](https://wordpress.org/support/users/moddingrepair/)
 * (@moddingrepair)
 * [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/)
 * hi, great plugin really nice.
    I have activated the scrolling of the products,
   but I also wanted that they do not move by themselves, but that I move them with
   a mouse or a mobile with touch, could you tell me if it is possible? thanks a
   lot again

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [db151](https://wordpress.org/support/users/moddingrepair/)
 * (@moddingrepair)
 * [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/#post-14382302)
 * or alternatively put for example 10/15 seconds? 🙂
 *  Plugin Contributor [Vagelis](https://wordpress.org/support/users/eboxnet/)
 * (@eboxnet)
 * [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/#post-14387027)
 * Hello you can use the function below to change the carousel settings
 *     ```
       function v_woo_related_slider() { 
         if (is_product()) {?>
       	<script>
       	jQuery(document).ready(function($) {
       	$("#woorelatedproducts").data('owlCarousel').destroy();
         	var owl = $("#woorelatedproducts");
       	  owl.owlCarousel({
       	      items : 3,
       	      itemsDesktop : [1000,3],
       	      itemsDesktopSmall : [900,3],
       	      itemsTablet: [600,2],
       	      autoPlay: 3500,
       	      itemsMobile : false,
       	  });
       	  });
       	</script> <?php 
       	}
       }
       add_action( 'wp_footer', 'v_woo_related_slider' );
       ```
   
 * You can set autoplay to false or 15000. You can also control the carousel columns
   if you like ( ie you can set items to 4 etc )
 *  Thread Starter [db151](https://wordpress.org/support/users/moddingrepair/)
 * (@moddingrepair)
 * [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/#post-14390119)
 * perfect worked great, thank you and sorry for the trouble
 *     ```
       function v_woo_related_slider() { 
         if (is_product()) {?>
       	<script>
       	jQuery(document).ready(function($) {
       	$("#woorelatedproducts").data('owlCarousel').destroy();
         	var owl = $("#woorelatedproducts");
       	  owl.owlCarousel({
       	      items : 5,
       	      itemsDesktop : [1000,3],
       	      itemsDesktopSmall : [900,3],
       	      itemsTablet: [600,2],
       	      autoPlay: false,
       	      itemsMobile : false,
       	  });
       	  });
       	</script> <?php 
       	}
       }
       add_action( 'wp_footer', 'v_woo_related_slider' );
       ```
   
 *  Plugin Contributor [Vagelis](https://wordpress.org/support/users/eboxnet/)
 * (@eboxnet)
 * [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/#post-14390487)
 * Good news 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘stop slide movement’ is closed to new replies.

 * ![](https://ps.w.org/woo-related-products-refresh-on-reload/assets/icon-256x256.
   png?rev=1531812)
 * [Related Products for WooCommerce](https://wordpress.org/plugins/woo-related-products-refresh-on-reload/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-related-products-refresh-on-reload/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-related-products-refresh-on-reload/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-related-products-refresh-on-reload/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-related-products-refresh-on-reload/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Vagelis](https://wordpress.org/support/users/eboxnet/)
 * Last activity: [5 years ago](https://wordpress.org/support/topic/stop-slide-movement/#post-14390487)
 * Status: resolved