Skip to content

Instantly share code, notes, and snippets.

@hamidrezayazdani
Last active October 15, 2021 18:45
Show Gist options
  • Save hamidrezayazdani/d2c093bb7161f6e37a6b10d38268993f to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/d2c093bb7161f6e37a6b10d38268993f to your computer and use it in GitHub Desktop.
پیام تبریک سفارشی در صفحه تشکر از خرید ووکامرس پس از پرداخت موفق
<?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