• Resolved metusalem

    (@metusalem)


    Hi, I can not see the options for navigation arrows as in your screenshot?

    I would also like to control if there are 3 or 4 products showing. How?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Vagelis

    (@eboxnet)

    Hello there, sorry for the late reply.
    If your theme doesn’t style the carousel navigation arrows then you ll have to do it manually.

    You can use the function bellow to have a 4 columns slider

    function v_woo_related_slider() { 
      if (is_product()) {?>
    	<script>
    	jQuery(document).ready(function($) {
    	$("#woorelatedproducts").data('owlCarousel').destroy();
      	var owl = $("#woorelatedproducts");
    	  owl.owlCarousel({
    	      items : 4,
    	      itemsDesktop : [1000,3],
    	      itemsDesktopSmall : [900,3],
    	      itemsTablet: [600,2],
    	      autoPlay: 3500,
    	      itemsMobile : false,
    	  });
    	  });
    	</script> <?php 
    	}
    }
    add_action( 'wp_footer', 'v_woo_related_slider' );
Viewing 1 replies (of 1 total)
  • The topic ‘Navigation options?’ is closed to new replies.