Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

woocommerce change place order button text

<?php
add_filter( 'woocommerce_order_button_text', 'woo_custom_order_button_text' ); 

function woo_custom_order_button_text() {
    return __( 'Your new button text here', 'woocommerce' ); 
}
Source by wordpress.org #
 
PREVIOUS NEXT
Tagged: #woocommerce #change #place #order #button #text
ADD COMMENT
Topic
Name
4+6 =