I'm looking to remove the wording and area that says "Product Successfully Added to Cart" after I add an item to the cart. I just want there to be nothing, no message and no space for the message.
Here's the site: http://www.tinytreasurehunts.com The code is in woocommerece-functions.php
Any thoughts?
To solve this at PHP level, add the following template file (and structure) to your theme:
/wp-content/themes/YOUR-THEME/woocommerce/shop/messages.php
:See: Template Structure + overriding templates via a theme
Use one of these:
Older version
Version 2.3
Just use simple CSS:
Use .post .woocommerce_message{display:none;} at the end of your theme files or in your child theme.
Add this code to your themes functions.php file. It will remove only that message. It should trigger on just the pages where it is likely to occur.
I've pasted this answer from my own answer at Remove/Hide Woocommerce Added to Cart Message but Keep/Display Coupon Applied Message
Use CSS and set the display to none for the ID or associated class.
This is specific to page id 522. Make sure this doesn't also hide other useful messages like credit card declines, etc.