Let’s learn how to personalize the WooCommerce Thank You page with simple code, so that you can enhance the customer experience and boost sales!
Hosted by Rodolfo Melogli
Masterclass overview
A thank you page is incredibly important for an ecommerce site. It serves as a confirmation of the purchase, provides essential order details, and offers opportunities for further engagement.
Unfortunately – or fortunately 🙂 – the WooCommerce Thank You page template is quite basic, which means there’s lots of room for improvement.
A well designed thank you page should feature:
- Trust (reassures customers that their order has been processed successfully, building trust and confidence in your business. Also a heartfelt, personalized message can make customers feel valued and appreciated)
- Order information (provides essential information like order number, shipping address, and expected delivery time, allowing customers to track their purchase)
- Product-specific documentation (tutorials, guidelines or content related to the products that were purchased)
- Upselling and cross-selling (promotes related or complementary products, increasing average order value)
- Customer retention (offers exclusive discounts or promotions to encourage repeat purchases and foster customer loyalty)
- Social sharing (displays social sharing buttons to help you reach a wider audience and generate word-of-mouth marketing)
- Customer feedback (includes a survey or rating system to gather valuable feedback)
- Loyalty or referral program enrollment (if you have a loyalty or affiliate program, provide information on how customers can join)
During this class, I will show you how to redesign the WooCommerce Thank You page to meet all the above criteria, so you can apply these features to your WooCommerce website.
This is an amazing opportunity to see how simple WooCommerce template changes can have a huge impact on customer retention and repeat business. It’s also a great opportunity to hang out with like-minded WooCommerce professionals during the live class (or forever, if you become a Business Bloomer Club member).
Video Recording
If you are a member, please log in.
Otherwise, here is why you should join the Club.
Code Snippets
/**
* @snippet Add content before, after Woo Thank You page
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 9
* @community https://businessbloomer.com/club/
*/
// SHOW SOMETHING BEFORE THANK YOU PAGE CONTENT
add_action( 'woocommerce_before_thankyou', 'bbloomer_test' );
function bbloomer_test( $order_id ) {
echo '<h2>This is a TEST</h2>';
}
// SHOW SOMETHING AFTER THANK YOU PAGE CONTENT
add_action( 'woocommerce_thankyou', 'bbloomer_test_2' );
function bbloomer_test_2( $order_id ) {
echo '<h2>TEST 2</h2>';
}
// CUSTOMIZE "THANK YOU. YOUR ORDER HAS BEEN RECEIVED."
add_filter( 'woocommerce_thankyou_order_received_text', 'bbloomer_custom_thank_you_message', 9999, 2 );
function bbloomer_custom_thank_you_message( $html, $order ) {
$html = '<h2 style="text-align:center">Awesome, ' . $order->get_billing_first_name() . ', thanks so much for your purchase!</h2>';
return $html;
}
Useful Links
WooCommerce: Display Product Up-sells @ Thank You Page
WooCommerce: Include Custom WP Page @ Thank You Page
WooCommerce: “Share your Purchase on Twitter” @ Thank You Page
WooCommerce: View Thank You Page @ Order Admin
WooCommerce: Get Order Data (total, items, etc) From $order Object
What you’ll learn
Requirements
-
WooCommerce Plugin Marketing 4 Week Cohort 001
Live Cohort: MEMBERS ONLY Recordings: MEMBERS ONLY This 4-week hands-on cohort is for developers ready to grow their WooCommerce plugin. We’ll not just learn—we’ll get…
-
Why You Should Build WooCommerce Products in Public
Building a WooCommerce product or service in private is no longer enough. In today’s AI-driven world, the first people to see your work often determine…
-
WooCommerce in 2027: The New Admin Design
Live Class: FREE Recordings: BBCLUB MEMBERS ONLY WooCommerce hasn’t meaningfully refreshed its admin UX in years, while competitors keep raising the bar. In this session,…
-
Finding Your Next 10 WooCommerce Clients
Discover how to land your next 10 WooCommerce clients. This session is for freelancers, agencies, consultants, and product owners who want a clear, practical strategy…
-
WooCommerce Plugin Marketing 101: Your First 1,000 Users
Most WooCommerce plugins never reach 1,000 active installs—but hitting that milestone is crucial for validating your product before going PRO. In this class, I’ll show…
-
WooCommerce Settings API: Build Custom Option Pages
Stop cluttering the WordPress admin menu with separate settings pages! Learn to create professional, native-feeling custom tabs and options right inside the WooCommerce Settings interface.…
-
WooCommerce Database Walkthrough: Tables Explained
Tired of relying on guesswork when querying crucial WooCommerce data? This is your essential tour. We will walk you table-by-table through the WooCommerce database schema,…
-
From Woo Plugins to Shopify Apps Dev: Is it Worth it?
You’ve mastered WooCommerce plugin development. But is the scalable income of the Shopify App Store worth the pivot? This session provides a clear-eyed look at…
-
Avoid Costly Mistakes: Spotting WooCommerce Client Red Flags
Are you tired of projects that go over budget, clients who ghost, or customers who drain support? Bad clients — whether for consulting, development, or…
-
Classic vs Block: Add, Remove & Edit WooCommerce Checkout Fields
Let’s dive into the ins and outs of customizing WooCommerce checkout fields, comparing the Classic Checkout with the Checkout Block. You’ll see exactly what’s possible…
-
Behind the Scenes: The Making of Checkout Summit 2026
What does it really take to build a WooCommerce site that can handle a major international conference? For Checkout Summit 2026, I started with nothing…
– BACKED BY –















