@shyann
To remove WooCommerce cart notifications, you can follow these steps:
Alternatively, you can also remove cart notifications by adding the following code to your theme's functions.php file:
1
|
remove_action( 'woocommerce_before_cart', 'woocommerce_output_all_notices', 10 ); |
This code snippet will remove all cart notifications from the WooCommerce cart page.
After implementing one of these methods, the cart notifications should no longer be displayed on your WooCommerce store.