Vagelis
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Products for WooCommerce] Theme’s CSSHello there, sorry for the late reply.
You can easily style plugin’s output on your website using your theme’s style rules and plugin’s classes to target elements.Let me know if you need help.
Thanks.Forum: Plugins
In reply to: [Related Products for WooCommerce] woo related product now showing properlyHello… I don’t really understand what “not showing properly”. There is no special process to update the plugin, this sounds like a theme issue but I can’t tell as I can’t see the website.
Hello @vinceo00, there was an option in the early versions of the plugin for that. Next minor update will bring that back.
Hopefully, I will be able to deploy that in a couple of weeks.
ThanksForum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselNo problem, if you ever find out what happened with the class please let me know.
Good luck with your projects.Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselYes, I just checked a couple websites I use the plugin in and all have the class.
We could use the ID to target the parent (div without class)Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselHmm so weird, I added that class on that specific div so we can target any element within it.
check the demo site https://woorelated.eboxnet.com/
Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselYes of course, happy to help.
The first div should have “woo-related-products-container” did this happen after you edited ? can you try to disable the edits and check if the div class is there or not?Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselThanks for the screenshots. The plugin use owl carousel just like your theme. Of course, the theme uses many style rules to make it look better than plugin’s carousel. You will need to modify plugin’s style using your theme’s styling rules.
As for the carousel options please visit these 2 links:
https://wordpress.org/support/topic/related-products-is-not-incremented/
https://wordpress.org/support/topic/how-to-display-more-than-3-product-in-slider/There are 2 useful functions in those topics to help you “destroy” and reinitiate the carousel using custom options.
If you want to read more about owl carousel’s options you should check this page:https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html
Hopefully, the new version will be online soon (trying to find free time to finish it) packed with lots of new options.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Owl CarouselHello Dan, there are no options for the carousel on the current version ( this is something I am currently working on ).
Since your theme uses the same system you should be able to use the same styling. As for the functionality of the plugin if you want to change some of its options I can give you a function which you can use to re reinitiate the carousel.
Forum: Plugins
In reply to: [Related Products for WooCommerce] related products is not incrementedHello @mahi8900 please start your own topic so we can solve your issue. Make sure you provide a URL and your configuration settings. Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] related products is not incrementedWhere did you add the function?
Forum: Fixing WordPress
In reply to: site blocked in maintenance modeHello @jmmetzger, if you have access to your server’s filesystem (control panel, ftp, sftp etc) and you are familiar with it get into wp-content/plugins/ and rename plugin’s folder. After a page reload the plugin will be disabled and you ‘ll be able to get into your dashboard without problems.
Forum: Fixing WordPress
In reply to: WeWebsite DisappearedHello, this is what I get from your website:
“Warning! Domain mapping upgrade for this domain not found. Please log in and go to the Domains Upgrades page of your blog to use this domain. ”
You should get into your wordpress.com account and check what’s going on (not the same with wordpress.org)
Forum: Plugins
In reply to: [Related Products for WooCommerce] related products is not incrementedHello there, i am not sure what code you used and where you added it but try this one:
function v_woo_related_slider() { if (is_product()) {?> <script> jQuery('#woorelatedproducts').trigger('destroy.owl.carousel'); jQuery(document).ready(function($) { var owl = $("#woorelatedproducts"); owl.owlCarousel({ items : 4, itemsDesktop : [800,3], itemsDesktopSmall : [900,3], itemsTablet: [600,2], autoPlay: 3500, itemsMobile : false, }); }); </script> <?php } } add_action( 'wp_footer', 'v_woo_related_slider', 90 );Should work
Forum: Reviews
In reply to: [Related Products for WooCommerce] Works greatGlad you liked it, thanks for the review.
- This reply was modified 7 years, 3 months ago by Vagelis. Reason: Typo