Allows 3rd parties to alter whether the customer note should be displayed on the admin.
$order
Sortie :
@param bool TRUE if the note should be displayed. FALSE otherwise.
// Ajouter une fonction au hook action 'woocommerce_admin_order_data_after_shipping_address'
add_action('woocommerce_admin_order_data_after_shipping_address', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($order) {
// Votre code ici
error_log('Hook woocommerce_admin_order_data_after_shipping_address déclenché');
}
Chargement des actualités...