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 an
Use CSS and set the display to none for the ID or associated class.
.page-id-522 .woocommerce_message { display: none; }
This is specific to page id 522. Make sure this doesn't also hide other useful messages like credit card declines, etc.