Action to signal that the value of 'stock_quantity' for a variation is about to change.
$product
Sortie :
@param int $product The variation whose stock is about to change.
// Ajouter une fonction au hook action 'woocommerce_variation_before_set_stock'
add_action('woocommerce_variation_before_set_stock', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($product) {
// Votre code ici
error_log('Hook woocommerce_variation_before_set_stock déclenché');
}
Chargement des actualités...