Vagelis
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Products for WooCommerce] stop slide movementHello 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 )
Forum: Plugins
In reply to: [Related Products for WooCommerce] Navigation options?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' );
Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?Noted!
I am glad you like it.
You can add a review if you have a minute.Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?No problem ??
Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?Yes ofc, just change width from 25% to 33.33%
Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?There’s a conflict with your minified CSS
Try this:
.woo-related-products-container ul.loops-wrapper.products>li.product { width: 25%!important; padding: 20px!important; float: left!important; box-sizing: border-box!important; margin-right: 0!important; margin-bottom: 3.2%!important; clear: none!important; } @media screen and (max-width: 768px) { .woo-related-products-container ul.loops-wrapper.products>li.product { width: 50%!important; } }
Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?Can you please disable the slider?
Forum: Plugins
In reply to: [Related Products for WooCommerce] Display in grid format?Hello @ssailer, happy to help if you give me a link to your website.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Show priceHello there, the plugin use theme’s loop to display the products so there’s nothing we can do within the plugin to enable that.
Thanks.
Hello there, thanks for taking the time to let me know.
I am aware of the issue and a fix has been applied and it will be released with the next version of the plugin.Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] 4 difficulties to displayHello there, thanks for your suggestions.
Forum: Reviews
In reply to: [Related Products for WooCommerce] Excellent pluginThank you.
Thanks for the feedback.
I added these into my notes.Forum: Plugins
In reply to: [Related Products for WooCommerce] Can’t style the pluginHello all, sorry about the inconvenience. I had that on my list but it looks like it slipped away. I ll fix it on the next minor update.
Thanks for the feedback.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Specifying column numberHello, the plugin is using theme’s default output however we can change that.
Are you using the slider?Thanks.