ניתן להסתיר מוצרים שאזלו מהמלאי מעמודי הקטלוג והחיפוש. הדרך הפשוטה ביותר היא דרך הגדרות ווקומרס: WooCommerce > Settings > Products > Inventory > "Hide out of stock items from the catalog". אם אתם מעדיפים דרך קוד, הוסיפו ל-functions.php. לעוד על ניהול מלאי בווקומרס.
add_action( 'pre_get_posts', function( $query ) {
if ( ! is_admin() && $query->is_main_query() && ( is_shop() || is_product_category() || is_product_tag() ) ) {
$query->set( 'meta_query', array(
array(
'key' => '_stock_status',
'value' => 'instock',
'compare' => '=',
),
) );
}
} );