Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /* Add this snippet in your child theme functions.php file */
  2. add_action( 'woocommerce_before_cart' , 'my_custom_cart_notice' );
  3. function my_custom_cart_notice() {
  4.  
  5. wc_clear_notices();
  6. wc_print_notice( 'My custom notice text comes here', 'notice' );
  7. wc_clear_notices();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement