All Resources

Change WooCommerce Place Order Button Text on Checkout Page

The Place Order button on the WooCommerce checkout page is located in the review-order.php template. It can be modified there by using the WooCommerce template structure system, or you can just add the following to your functions.php file (minus the php tags).


<?php
/*
Change Place Order button text on checkout page in woocommerce
*/
add_filter('woocommerce_order_button_text','custom_order_button_text',1);
function custom_order_button_text($order_button_text) {
$order_button_text = 'Complete Checkout';
return $order_button_text;
}
?>

view raw

functions.php

hosted with ❤ by GitHub

November 14, 2014 WordPress Development