/**
* Custom text on the receipt page.
*/
function isa_order_received_text( $text, $order ) {
$new = $text . ‘ A receipt has been sent to you via email.’;
return $new;
}
add_filter(‘woocommerce_thankyou_order_received_text’, ‘isa_order_received_text’, 10, 2 );