I'm trying to add a product archive widget in Elementor but in this widget specifically must hide "Out of stock" products.
I try to modify this code but I have not succeeded.
add_filter( 'woocommerce_product_query_meta_query', 'shop_only_instock_products', 10, 2 );
function shop_only_instock_products( $meta_query, $query ) {
// Only on shop archive pages
if( '#outst' ) return $meta_query;
$meta_query[] = array(
'key' => '_stock_status',
'value' => 'outofstock',
'compare' => '!='
);
return $meta_query;
}
Any ideas?
Sidebar of elementor: