Skip to content

Instantly share code, notes, and snippets.

@neilgee
Last active September 5, 2017 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilgee/a570907ec8bb4d54741f to your computer and use it in GitHub Desktop.
Save neilgee/a570907ec8bb4d54741f to your computer and use it in GitHub Desktop.
WooCommerce Filter Thank You ORder Received 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 ;
}
<?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 ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment