Vagelis
Forum Replies Created
-
Hello, again the functionality you describe has nothing to do with the plugin.
All plugin’s options are within the options page and apart from that there is nothing more to change/edit/check and of course, there is no interaction with the page/content editors.Are you sure you need help regarding the related products plugin?
What are you trying to do?Hello there, the functionality that you describe is not related to the plugin.
Can you share more info ( screenshot or something )Thanks.
Yes, that is correct.
Plugin ignores out of stock products.
There is no option for this at the moment but I will add it on my todo list.Thank you.
Hello there, I am sorry to hear that didn’t work.
From what I see on the link you sent your content is restricted and I can’t see your eshop area.
You could try to remove the content restriction to see if the problem solves as i suspect is related to that.Thanks.
Yes, I am aware of this and as I already told you it’s not related to the plugin’s functionality.
The plugin initiates the carousel within woo-related-products-public.js which you can find inside the public folder.
If you take a closer look at the function I sent on my first post you will see that I destroy the carousel and i re-initiate it to avoid editing the plugin’s js file.
Just use that function.This code is not related to the plugin.
Hello there.
1. You can alter the number of carousel items by adding the below function into your child theme’s functions.php file or in a helper plugin
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' );2. There is no ETA at this time.
3. You can solve that with some js.
Something like that would work as a temp solution:jQuery('#woorelatedproducts:empty').closest('div').remove();You can combine that with the first function.
Thanks.- This reply was modified 6 years, 10 months ago by Vagelis.
Hello there, the text you quoted is unrelated to the shortcode.
If you want to get related by attributes you can use the default functionality and/or an action ( don’t forget to set the “Related by” option to attributes. )Shortcode can relate products by product but only when “Related by” is Category or Tag.
Hope that helps,
thank you.Forum: Plugins
In reply to: [Related Products for WooCommerce] Plugin not work when active stock managerHello @ngthanhdo.
Thank you for your kind words and for bringing this to my attention.
I just tested on my demo store and I don’t see anything weird.https://woorelated.eboxnet.com/product/ship-your-idea-2/
Any more info you could share with me?
Forum: Plugins
In reply to: [Related Products for WooCommerce] Show products related by brand(s)Hello there, sorry no custom taxonomies are not supported atm.
Forum: Plugins
In reply to: [Related Products for WooCommerce] show product 1 lineHello there, the plugin doesn’t style its output but it’s using theme’s CSS style rules.
A fast fix to your issue would be
.woo-related-products-container.woo-related-shortcode ul li { list-style: none; float: left; width: 33%; }I am sure you’ll need more styling though.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Tags not fully working as expectedNo problem. Feel free to get in touch if you need anything else (just open a new thread please)
Have a good one 🙂
Forum: Plugins
In reply to: [Related Products for WooCommerce] Tags not fully working as expectedHello there, the plugin will pull random plugins from the tags it finds.
We don’t currently use a “score” to display related products as the purpose of this was to have new related products in every page load.Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Product from subcategoriesHello there, I think using tags will be better for your setup.
Thanks.Forum: Plugins
In reply to: [Related Products for WooCommerce] Related by attribute css issueHello there, thanks for bringing this to my attention.
I will check and fix on the next release.Thank you.