0
votes

I want to remove the message "you cannot add another (product title) to your cart", from my website as it interferes with the styling I have created. I have tried the solutions offered previously on this forum but none appear to work.

I have tried the solution offered in this post:

How to remove woocommerce error You cannot add another “PRODUCT NAME” to your cart

However, the message still appears alongside an additional message. Any help would be greatly appreciated.

KR

1

1 Answers

0
votes

Have you tried putting this into your theme's functions.php file?

// Removes WooCommerce 'You cannot add another product to your cart' message
    add_filter( 'woocommerce_cart_product_cannot_add_another_message', '__return_false' );