woocommerce_should_send_no_stock_notification

FILTER woocommerce\includes\class-wc-emails.php (ligne 1055) github
Determine if the current product should trigger a no stock notification

Paramètres

Entrée :
true, $product->get_id(
Sortie :
@param int $product_id - The out of stock product id

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_should_send_no_stock_notification'
add_filter('woocommerce_should_send_no_stock_notification', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(true) {
    // Modifier la valeur
    return true;
}

Actualités

Chargement des actualités...