Answers for "woocommerce change place order button text"

PHP
0

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' ); 
}
Posted by: Guest on September-09-2021

Code answers related to "woocommerce change place order button text"

Browse Popular Code Answers by Language