Vagelis
Forum Replies Created
-
Forum: Reviews
In reply to: [Related Products for WooCommerce] This plug solve the problem !!!Hello there,
happy new year !!!Thanks for your review.
Forum: Reviews
In reply to: [Related Products for WooCommerce] Very Good! … butHello there, thanks for the review.
Sorry to hear it didn’t work well for you.Let me know if you need support.
Thanks.Forum: Plugins
In reply to: [My Above The Fold CSS] Where To Paste The Code My Above The Fold CSSTake a look at this one
https://www.wpfaster.org/blog/how-to-use-autoptimize-inline-and-defer-css-option
it may be the best solution for you atm.Let me know if anything.
Thanks.Forum: Plugins
In reply to: [My Above The Fold CSS] Where To Paste The Code My Above The Fold CSSHaha sorry i made you wait. I was travelling for WordCamp and didn’t have the chance to reply earlier.
Let me know if you need more info.
Thanks.- This reply was modified 8 years, 5 months ago by Vagelis.
Forum: Plugins
In reply to: [My Above The Fold CSS] Where To Paste The Code My Above The Fold CSSHello there, no you can’t remove the optimize plugin you need to keep it if you use the extracted code there.You will need to extract each page separately yes.You could put the extracted CSS in the header of your website.
Hello, thanks for using Woo Related Products and sorry for the late reply.
Use the function below to alter slider columns (you can alter the function per your needs ofc)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' );Next versions will include an option to set columns for Static display and slider.Until then use the above function.
Let me know if you need anything else,
Thank you.Forum: Plugins
In reply to: [Related Products for WooCommerce] Not work with woocommerce v.3.2.5Hello there, sorry to hear it didn’t work for you, however, i need to inform you that plugin has been tested with 3.2.5 and works fine.(demo website use 3.2.5 atm).
It looks like you are having a theme or maybe a plugin conflict (most of the times it’s just the theme).Also, you may want to double check woo related products settings to make sure everything is ok.Thanks.
Forum: Reviews
In reply to: [My Above The Fold CSS] AwesomeHello there, I am glad you found this helpful.
Thanks.Forum: Plugins
In reply to: [Related Products for WooCommerce] Mobile?Hello, @maddoctor thanks for reaching out.
Personally, i don’t see anything wrong on my mobile devices on the link you sent, however, please keep in mind that in non-slider version this is handled 100% from the theme.
In case of slider then if you need more or fewer columns you can destroy and re-initiate the slider.Let me know if you need any help.
Thanks.Forum: Plugins
In reply to: [My Above The Fold CSS] Where To Paste The Code My Above The Fold CSSThanks for the update, sorry to hear about your rank, unfortunately, i can’t “debug” this, may you need a different combo of plugins for your site (or maybe you need to try autoptimize only as its an excellent plugin)
Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] functions.php code?You could use the shortcode in your product template or anywhere else but if you simply need to move the output the code i sent you will do the trick.
Thanks.
Forum: Plugins
In reply to: [My Above The Fold CSS] Where To Paste The Code My Above The Fold CSSHello there, please check the URL below.
https://www.wpfaster.org/blog/how-to-use-autoptimize-inline-and-defer-css-option
Let me know if anything.
Thanks!Forum: Plugins
In reply to: [Related Products for WooCommerce] functions.php code?Hello there, this should work:
remove_action('woocommerce_after_single_product', 'wrprrdisplay'); add_action('woocommerce_after_single_product_summary', 'wrprrdisplay', 10);let me know if anything.
Thanks for using Woo Related Products.Hello, thanks for using Woo Related Products.
Use the function below to alter slider columns (you can alter the function per your needs ofc)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' );Next versions will include an option to set columns for Static display and slider.Until then use the above function.
Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] plugin “Woo Related Products ”Hello again i came up with a solution for the slider, you can use the function below in your functions.php to alter slider’s columns from 3 to 4 (you can adjust per your needs ofc)
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 with file editing you should way for next plugin update!Do not edit your theme’s functions file if you are not confident you can do it.
- This reply was modified 8 years, 6 months ago by Vagelis.