woocommerce_fulfillment_updated_notification

ACTION woocommerce\src\Internal\Fulfillments\OrderFulfillmentsRestController.php (ligne 377) github
Trigger the fulfillment updated notification on updating a fulfillment.

Paramètres

Entrée :
$order_id, $fulfillment, wc_get_order( $order_id
Sortie :
N/A

Utilisation

// Ajouter une fonction au hook action 'woocommerce_fulfillment_updated_notification'
add_action('woocommerce_fulfillment_updated_notification', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($order_id, $fulfillment, wc_get_order( $order_id) {
    // Votre code ici
    error_log('Hook woocommerce_fulfillment_updated_notification déclenché');
}

Actualités

Chargement des actualités...