Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 102102

jameskoster on "[Plugin: WooCommerce - excelling eCommerce] Remove Add to Cart Buttons from Product Page"

$
0
0

So you're trying to remove _all_ add to cart buttons? How do people buy things at your store? :-)

You can remove the add to cart button on the product page by amending the code helga gave you to look like this;

function remove_loop_button(){
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
}
add_action('init','remove_loop_button');

Viewing all articles
Browse latest Browse all 102102

Trending Articles