Skip to content

Instantly share code, notes, and snippets.

@harishkotra
Created December 16, 2019 13:19
Show Gist options
  • Save harishkotra/e7f53a2d620d43882bf05530ef27181e to your computer and use it in GitHub Desktop.
Save harishkotra/e7f53a2d620d43882bf05530ef27181e to your computer and use it in GitHub Desktop.
Custom thank you message after order is placed to show to the customer in woocommerce.
/*
* Custom thank you message after order is placed to show to the customer in woocommerce.
*/
add_filter( 'woocommerce_thankyou_order_received_text', 'holikau_custom_ty_msg' );
function holikau_custom_ty_msg ( $thank_you_msg ) {
$thank_you_msg = 'Thank you for placing an order with us! Our Customer Care Executive will review your order & get in touch with you shortly regarding your date & time of delivery. Incase you want to make changes to your order please call +91-9849427575!';
return $thank_you_msg;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment