Last active
October 15, 2021 18:45
-
-
Save hamidrezayazdani/d2c093bb7161f6e37a6b10d38268993f to your computer and use it in GitHub Desktop.
پیام تبریک سفارشی در صفحه تشکر از خرید ووکامرس پس از پرداخت موفق
This file contains hidden or 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
<?php | |
/** | |
* Change WooCommerce thank you message after successful payment | |
*/ | |
function ywp_custom_wc_thankyou_notice( $order ) { | |
return 'از خرید شما سپاسگزاریم، از لیست زیر میتوانید فایلهای خریداری شده را دانلود کنید.'; | |
} | |
add_filter( 'woocommerce_thankyou_order_received_text', 'ywp_custom_wc_thankyou_notice' ); | |
// The code goes to your active theme (or child theme) functions.php file. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment