• Resolved freelylw

    (@freelylw)


    This plugins works perfectly, but seems no setting for row/columns for display. I am using woocommerce storefront theme, there are 2 problems:

    1: related products only showing in 3 columns, I want to have a 4 columns option
    2: in the setting of “Products to display”, there is num “6,8,10…” but why there is no “9” ? its very strange. at the moment its only showing 3 columns, but no “9”, either 8 or 10, its showing strange on the page.

    anyone can advise how can I adjust the display for 4 columns ? Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Vagelis

    (@eboxnet)

    Hello there, you are right.
    Plugin’s options for display and formatting are poor at the moment.

    There is an updated version of the plugin which has better options but i didn’t release that yet as i still need to finish a few bits even though that was supposed to be release a while ago.

    Anyway, if you need help with the slider or static display i can help you.
    Just let me know what you need, thanks.

    Thread Starter freelylw

    (@freelylw)

    hi, thanks, is there a code I can temporary use for display in 4 columns ?

    Plugin Author Vagelis

    (@eboxnet)

    Are you using the slider?

    Plugin Author Vagelis

    (@eboxnet)

    You can use that to get 4 columns while using the 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' );
    • This reply was modified 4 years, 6 months ago by Vagelis. Reason: code snippet edit
    Thread Starter freelylw

    (@freelylw)

    hi, I am not using the slider, just a standard display

    Plugin Author Vagelis

    (@eboxnet)

    OK no problem,
    can i get a link to your website please?

    The code worked for slider. Hope you use Owlcarousel2 in future version. Without slider layout was disrupted don’t know why.

    Plugin Author Vagelis

    (@eboxnet)

    Thanks for the update.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘no columns setting ? only 3 columns..’ is closed to new replies.