“Entfernen Sie in WooCommerce zum Karren Taste hinzufügen” Code-Antworten

Entfernen Sie hinzu den Wagen -Woocommerce -Schaltfläche hinzufügen

function chiefthemes_remove_addcart() {
   $product = get_product();
   if ( has_term ( 'category-name', 'product_cat') ) {
       remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
       remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
       remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 );
       remove_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 30 );
       remove_action( 'woocommerce_variable_add_to_cart', 'woocommerce_variable_add_to_cart', 30 );
       remove_action( 'woocommerce_external_add_to_cart', 'woocommerce_external_add_to_cart', 30 );
   }
}
add_action( 'wp', 'chiefthemes_remove_addcart' );
Itchy Ibis

Entfernen Sie in WooCommerce zum Karren Taste hinzufügen

remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 20);
Bongani

Ähnliche Antworten wie “Entfernen Sie in WooCommerce zum Karren Taste hinzufügen”

Fragen ähnlich wie “Entfernen Sie in WooCommerce zum Karren Taste hinzufügen”

Weitere verwandte Antworten zu “Entfernen Sie in WooCommerce zum Karren Taste hinzufügen” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen