Filter the product name.
true, $cart_item, $cart_item_key
Sortie :
@param string $product_name Name of the product in the cart. @param array $cart_item The product in the cart. @param string $cart_item_key Key for the product in the cart.
// Modifier la valeur avec le filtre 'woocommerce_cart_item_visible'
add_filter('woocommerce_cart_item_visible', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...