WooCommerce Change “Place Order” Button Text

WooCommerce Checkout form showing customised Place Order button text

Pre-Requisites

There are no pre-requisites in order for you to be able to implement this solution.

How To Implement This Solution?

Simply copy the pre-coded solution to your active theme’s functions.php or preferably the Code Snippets Plugin.

About this Solution

Sometimes, it may be necessary to change the default “Place Order” button text on the WooCommerce Checkout form. Some payment gateways overwrite this text anyway with their own text which is easy enough using a PHP if statement. However, if you have the basic settings set, this quick guide will show you how you can change the button text to anything you deem necessary.

				
					/**
* Snippet Name:     Change the WooCommerce Place Order checkout button text.
* Snippet Author:   ecommercehints.com
*/

add_filter( 'woocommerce_order_button_text', 'ecommercehints_checkout_button_text' );
 
function ecommercehints_checkout_button_text( $button_text ) {
   return 'Get The Goods!'; // new text is here 
}
				
			

Snippet Benefits

  • Customise the Place Order text on the WooCommerce checkout form to anything you like
WooCommerce Conversion Rate Optimisation (CRO) eBook
100 WooCommerce Conversion Rate Optimisation Tips

Leave a Reply

If you are going to write code in the comments, please wrap it between code tags.

Your email address will not be published. Required fields are marked *

Other Recent Guides

Subscribe To Emails

Get exclusive WooCommerce tips that I only share with email subscribers

Join hundreds of other subscribers