Created
December 16, 2019 13:19
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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