Hi Guys
I try to use with Legenda on WordPress a plugin that is not working the the plugin owner give me this explanations:
===========================================================
URL changes but products list are not refreshed/ All products are show, filters don’t make a change:
It seems your shop theme is missing some standard WooCommerce actions and hooks so plugin can’t recognize page contents to refresh.
This plugin uses “WooCommerce_before_shop_loop” and “WooCommerce_after_shop_loop” actions to wrap products.
It means that you should print products between these two actions.
By following WooCommerce template rules, these two action should be located at:
WooCommerce/archive-product.php
There is a fallback for non-standard themes:
Some themes are not build with best practices so we provided a fallback:
These themes print products in an unordered list like this:
<ul class="products">
<li>Product 1</li>
<li>Product 2</li>
<li>Product 3</li>
</ul>
This is also a rule for WooCommerce template. (having a UL with products class)
If you don’t know how to fix your theme just send a message to your theme support team and they can do it in a few minutes.
This plugin supports another way to refresh products:
Wrap products in a span or div tag with codenegar-shop-loop-wrapper class like this:
<div class="codenegar-shop-loop-wrapper">
Product 1
Product 2
Product 3
</div>
=======================================================================
Can you guys please help me with this issue somehow?
Thank you
Bogdan