Hi Dear,
I have problem with Woocommerce Products Search official plugin.
I get console problem LOG: “Could not find the general Products Container, expected the selector .products”
Plugin developer https://docs.woocommerce.com/document/woocommerce-product-search/faq/ note that this problem is cause by: .products CSS class applied
I find something similar in your forum and I try to add “products” to:
Default:
<div class="row products-loop <?php echo esc_attr( $view_class ); ?> row-count-<?php echo esc_attr( $loop ); ?>"<?php if ($product_view == 'custom' && $custom_template != '' ) : ?> data-post-id="<?php echo esc_attr( $custom_template ); ?>"<?php endif; ?> data-row-count="<?php echo esc_attr( $loop ); ?>">
Changed:
<div class="row products products-loop <?php echo esc_attr( $view_class ); ?> row-count-<?php echo esc_attr( $loop ); ?>"<?php if ($product_view == 'custom' && $custom_template != '' ) : ?> data-post-id="<?php echo esc_attr( $custom_template ); ?>"<?php endif; ?> data-row-count="<?php echo esc_attr( $loop ); ?>">
In changed version filter works but some shop elements are broken.
Is there some better fix for this.
Thank you