Skip to content

Instantly share code, notes, and snippets.

@vishalck
Last active November 5, 2018 16:55
Show Gist options
  • Save vishalck/c761f1c60047d2a83262fd1cc95b0612 to your computer and use it in GitHub Desktop.
Save vishalck/c761f1c60047d2a83262fd1cc95b0612 to your computer and use it in GitHub Desktop.
Change Text on Order Received page in WooCommerce
<?php
add_filter('woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 10, 2 );
function woo_change_order_received_text( $str, $order ) {
$new_str = $str . ' We have emailed the purchase receipt to you.';
return $new_str;
}
@ashokrane
Copy link

@truexPoland You need to copy this code in the functions.php of your child theme. Are you saying you are unable to translate the message?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment