Vagelis
Forum Replies Created
-
Forum: Plugins
In reply to: [My Above The Fold CSS] How to applyHello, there are multiple ways and plugins ( you may want to check autoptimize which is a great plugin ) to inline your above the fold CSS.
This is not supposed to be affected by new blog posts etc.
If you want you can inline the code for each page or just your homepage.
Thanks.Hello there, thanks for letting me know about this.
I will check this and let you know asap.Forum: Plugins
In reply to: [Related Products for WooCommerce] How to get the related products IDHello there, sorry that’s not possible without modifying the plugin’s files.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Categories Related ProductsNo you don’t have to set a category, actually, you don’t need to use the shortcode at all if you just need related products on your single product page.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Categories Related ProductsHello there, the plugin can relate products by category(ies) tag(s) and attributes.
You can also choose between a static block or a carousel and ofc you can style both if you like using CSS.
So the answer is Yes to both of your questions.Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] owl-carouselIf you want to get 4 columns in the slider to reduce the size of related products you can use the function below into your child theme’s function.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' );If you are not familiar editing PHP files you should avoid doing that.
Forum: Plugins
In reply to: [Related Products for WooCommerce] owl-carouselGreat, spacing issue fixed.
Forum: Plugins
In reply to: [Related Products for WooCommerce] owl-carouselif you can’t remove then you should ADD this one
#woorelatedproducts .owl-item { max-width: initial!important; }This will override your theme’s css
Forum: Plugins
In reply to: [Related Products for WooCommerce] owl-carouselDid you remove this ? is it out atm ?
div.owl-wrapper div.owl-item { max-width: 180px; }Forum: Plugins
In reply to: [Related Products for WooCommerce] Related product by AtributeHello, you mean you need to use related by specific attribute?
Shortcode will work fine with Categories and Tags.Forum: Plugins
In reply to: [Related Products for WooCommerce] Where are affiliate ID’s?Hello there thanks for using Woo Related,
you can only exclude by Category and Tag atm.Forum: Plugins
In reply to: [Related Products for WooCommerce] owl-carouselHello there, I believe it’s your theme’s CSS that causing this issue
could you disablediv.owl-wrapper div.owl-item { max-width: 180px; }for a moment and test?
Forum: Plugins
In reply to: [Related Products for WooCommerce] Few ideas for next updateHello there, from what I see so far you had issues with the slider functionality. You can easily “destroy” the slider and recreate using JS to add more Columns, custom pagination etc.
Version 4.0 will be hopefully out soon including lots of improvements and new features.
Thanks for all your suggestions I will keep those in mind.Hello thanks, if you have 2 mins a review would be also great.
Thank you.I think I made a mistake, I thought you wanted to hide related’s product title but you may wanted to hide related products block’s title.
If thats the case use this.woorelated-title { display: none!important; }