woocommerce_fulfillment_shipping_providers

FILTER woocommerce\src\Internal\Fulfillments\FulfillmentUtils.php (ligne 373) github
This filter allows plugins to modify the list of shipping providers. It can be used to add, remove, or change the shipping providers available in the WooCommerce Fulfillments system.

Paramètres

Entrée :
array(
Sortie :
@param array $shipping_providers The default list of shipping providers.

Utilisation

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

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

Actualités

Chargement des actualités...