Adding custom content at the bottom of the the WooCommerce Order Received Thank You page is a great way to sell upsell products, ask users to rate your store, capture permission for email subscription etc. This quick guide shows you how to display literally any custom content you like at the very bottom of the thank you page.
/*
* Snippet Name: WooCommerce add content to the bottom of the order received thannk you page
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_thankyou', 'ecommercehints_custom_content_thank_you_page_bottom', 10, 0 );
function ecommercehints_custom_content_thank_you_page_bottom() {
echo 'What Now?
Please check your confirmation email for your unique download link. You can login to your account here to check the status of your order
';
}