Home › Forums › WoodMart support forum › In stock › Reply To: In stock
January 23, 2024 at 7:41 pm
#532821
wooblycommerce
Participant
Only solution is this, use this php code:
/**
* Display only in-stock products in WooCommerce.
*/
function display_only_in_stock_products( $query ) {
if ( ! is_admin() && $query->is_main_query() && ( is_shop() || is_product_category() || is_product() ) ) {
// Set the query to show only in-stock products
$query->set( ‘meta_query’, array(
array(
‘key’ => ‘_stock_status’,
‘value’ => ‘instock’,
‘compare’ => ‘=’,
),
) );
}
}
add_action( ‘pre_get_posts’, ‘display_only_in_stock_products’ );