Gets the correct string for shipping - either 'to the' or 'to'.
$return, $country_code
Sortie :
@param string $country_code Country code. @return string
// 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;
}
Chargement des actualités...