BIG BUG related to hidden products
-
Hello,
you have a big bug related to hidden products.
While user set
“Hide out of stock products in catalog” as ON, the products seems to be hidden, however result counter and pagination is broken – it counts with hidden products too!This is the snippet, which helped me.
function show_only_instock_products($query) { $meta_query = $query->get( 'meta_query' ); $meta_query[] = array( 'key' => '_stock_status', 'compare' => '=', 'value' => 'instock' ); $query->set( 'meta_query', $meta_query ); } add_action('woocommerce_product_query', 'show_only_instock_products');
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘BIG BUG related to hidden products’ is closed to new replies.