Returns whether or not the product has additional options that need selecting before adding to cart.
false, $this
Sortie :
@return boolean
// Modifier la valeur avec le filtre 'woocommerce_product_has_options'
add_filter('woocommerce_product_has_options', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(false) {
// Modifier la valeur
return false;
}
Chargement des actualités...