Hi, maybe its not really related to the theme, but maybe you can help…
Is it possible to hide all “out of sock” products from the categories, up-selling section, cross-selling section and the section You might be interested ont he porduct page. ?
Could you provide the snippet?
So far I have snippet to hide from the categories:
add_action(‘woocommerce_product_query’, ‘custom_woocommerce_product_query’);
function custom_woocommerce_product_query($q)
{
if (!is_admin())
{
$oos_query = new WP_Query([‘meta_query’ => [[‘key’ => ‘_stock_status’, ‘value’ => ‘outofstock’, ‘compare’ => ‘=’, ], ], ‘post_type’ => ‘product’, ‘posts_per_page’ => – 1, ‘fields’ => ‘ids’, ]);
$exclude_ids = $oos_query->posts;
$q->set(‘post__not_in’, $exclude_ids);
}
}