woocommerce_countries_shipping_to_prefix

FILTER woocommerce\includes\class-wc-countries.php (ligne 468) github
Gets the correct string for shipping - either 'to the' or 'to'.

Paramètres

Entrée :
$return, $country_code
Sortie :
@param string $country_code Country code.
@return string

Utilisation

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

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

Actualités

Chargement des actualités...