Filter WooCommerce Order Received Thank You Text

You can filter the text on a WooCommerce order received after checkout, by default the text reads ‘Thank you. Your order has been received’, but you may want to add some further instruction, which you can do using the filter woocommerce_thankyou_order_received_text

woocommerce-thankyou-text

<?php
add_filter( 'woocommerce_thankyou_order_received_text', 'wpb_thankyou' );
function wpb_thankyou() {
$added_text = '<p>You can access the PDF Download from the <a href="/account-page">My Account Page</a>.</p>';
return $added_text ;
}

Above the original text is being replaced.

Or below the original text is being retained with some new text added.

<?php
add_filter( 'woocommerce_thankyou_order_received_text', 'wpb_thankyou', 10, 2 );
function wpb_thankyou( $thankyoutext, $order ) {
$added_text = $thankyoutext . '<p>You can access the PDF Download from the <a href="/account-page">My Account Page</a>.</p>';
return $added_text ;
}