• After the latest WooCommerce update I have found that the add to cart function no longer works:

    add_action( 'woocommerce_after_shop_loop_item', 'remove_add_to_cart_buttons', 1 );
    
    function remove_add_to_cart_buttons() {
        remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
    }

    Whilst this does still remove the Buttons on Categories it no longer does on Products.

    What has changed?

    https://wordpress.org/plugins/woocommerce/

The topic ‘Remove add to Cart’ is closed to new replies.