Home › Forums › WoodMart support forum › Out of Stock product show up in Ajaz Search › Reply To: Out of Stock product show up in Ajaz Search
April 26, 2018 at 1:26 pm
#54792
Artem Temos
Keymaster
Try to edit the file woodmart/inc/classes/Search.php
and add the following code here http://prntscr.com/jaew8k
if ( 'yes' === get_option( 'woocommerce_hide_out_of_stock_items' ) ) {
$query_args['meta_query'][] = array( 'key' => '_stock_status', 'value' => 'outofstock', 'compare' => 'NOT IN' );
}