Vagelis
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Products for WooCommerce] Create 1 row of 6 columnsThanks for letting me know.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Create 1 row of 6 columnsYou can also add this to fix the container’s width
.woo-related-products-container { max-width: 1040px; margin: 0 auto; }Forum: Plugins
In reply to: [Related Products for WooCommerce] Create 1 row of 6 columnsNo, you don’t.
Let’s try this one.woo-related-products-container .col { max-width: 16.66667%!important; }- This reply was modified 6 years, 6 months ago by Vagelis.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Create 1 row of 6 columnsAhh I see you use Flatsome theme as well, the code you tried was for the carousel.
Try adding this to your child theme’s style.css.woo-related-products-container .large-columns-4>.col { max-width: 16.66667%!important; }Forum: Plugins
In reply to: [Related Products for WooCommerce] Create 1 row of 6 columnsHello again and thanks for opening a new one.
The fact that the code was getting displayed on the front end means that code didn’t run at all.Are you familiar with editing functions.php ?
Any chance you pasted the code after a PHP closing tag ??>- This reply was modified 6 years, 6 months ago by Vagelis.
Forum: Plugins
In reply to: [Related Products for WooCommerce] The plugin shows 6 products but in 2 rowsI will mark this as resolved feel free to open again if you need to.
For any others using that theme the CSS code that solved the “problem” is
.woo-related-products-container .large-columns-4>.col { max-width: 16.66667%!important; }Forum: Plugins
In reply to: [Related Products for WooCommerce] More than 4 products per rowHello there, could you please open a new ticket for your issue?
We can then debug it together and find the best solution for you.Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] The plugin shows 6 products but in 2 rowsHey, no problem.
Use wp@vagelis.devForum: Reviews
In reply to: [Related Products for WooCommerce] Work goodThanks for updating your review.
Forum: Plugins
In reply to: [Related Products for WooCommerce] The plugin shows 6 products but in 2 rowsHello there, glad to know you liked the plugin.
I can help you with the CSS issue you are having if you give me the URL of your website you can send it over by email if you prefer.Thanks.
Hello there,
to remove the action you need to:
remove_action('woocommerce_after_single_product', 'wrprrdisplay');and to add it back:
add_action('woocommerce_after_single_product_summary', 'wrprrdisplay', 9);Forum: Reviews
In reply to: [Related Products for WooCommerce] Work goodHello there, that is not true.
The plugin doesn’t have adware ( non of the wp directory plugins do ).
The plugin doesn’t even have a pro version it’s completely free ( and it will always be ).It looks like your website is infected with malware and for some reason, you blame my plugin.
Please try to be more careful when you review other ppl’s work, scan and clean your website then come back here and change your review.
Thanks.
The plugin works fine with 2.5.4 and I see you marked that as resolved.
What was the issue?Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl carousel display more than 3 ItemsActually never mind that other ticket ( as we talk about other things as well )
try to add this into your child theme’s functions.php file
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' );Of course, you can alter the items to match your needs.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl carousel display more than 3 ItemsHello there, I can’t access your website as you use a comming soon landing page.
Have a loon on this ticket:
https://wordpress.org/support/topic/change-items-count-in-owl-carousel-products-by-subcategory/This should do.