Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Woocommerce change add to cart message

add_filter( 'wc_add_to_cart_message_html', 'exploretech_custom_add_to_cart_message_html' );
function exploretech_custom_add_to_cart_message_html() {
  $ext_custom_message = "You have successfully added the product, thanks for shopping with us";
  return $ext_custom_message;
}
Source by exploretech.dev #
 
PREVIOUS NEXT
Tagged: #Woocommerce #change #add #cart #message
ADD COMMENT
Topic
Name
3+8 =