It seems we can’t find what you’re looking for. Perhaps searching can help.
// Supprimer le bouton d'ajout au panier sur la page boutique et les boucles remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); // Supprimer le bouton sur la page produit remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); // Supprimer le bouton dans les upsells add_action('woocommerce_before_single_product', function() { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); }); // Supprimer le bouton dans les produits liés add_action('woocommerce_before_related_products', function() { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); }); add_filter( 'woocommerce_add_to_cart_validation', '__return_false' );
It seems we can’t find what you’re looking for. Perhaps searching can help.