Looks through the cart to see if shipping is actually required.
$needs_shipping
Sortie :
@return bool whether or not the cart needs shipping
// Modifier la valeur avec le filtre 'woocommerce_cart_needs_shipping'
add_filter('woocommerce_cart_needs_shipping', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($needs_shipping) {
// Modifier la valeur
return $needs_shipping;
}
Chargement des actualités...