WooCommerce Checkout Redirect After Adding Product To Cart On Archive...
Read NowWooCommerce Change Order Received Title
Pre-Requisites
There are no pre-requisites for this code snippet to work. Keep in mind this solution consists of two code snippets, one to display the content and one to style it.
How To Implement This Solution?
Add these two code snippets as separate entries in either your active child theme’s functions.php file or the Code Snippets plugin.
About The Snippet
Customizing the thank you page title is a simple yet effective way to enhance your Customer Experience (CX). The default “Order Received” title is quite generic and can be a bit dull. By implementing this solution, you can revamp your thank you page title to make your customers feel more confident and pleased with their purchase from your store.
Code Snippet (Paste This Code In functions.php or Code Snippets )
/** * Snippet Name: Change the Order Received title on the WooCommerce Thank You Page. * Snippet Author: Nevercrox Solutions */ add_filter( 'woocommerce_endpoint_order-received_title', 'nevercrox_thank_you_title' ); function nevercrox_thank_you_title($old_title) { return 'All Done!'; }
Just Added Blogs
WooCommerce Change Checkout Field Placeholders
WooCommerce Change Checkout Field Placeholders Pre-Requisites There are no pre-requisites...
Read Now