/* Add to the functions.php file of your theme */
add_filter( ‘woocommerce_order_button_text’, ‘woo_custom_order_button_text’ );
function woo_custom_order_button_text() {
return __( ‘My Label here’, ‘woocommerce’ );
}
/* Add to the functions.php file of your theme */
add_filter( ‘woocommerce_order_button_text’, ‘woo_custom_order_button_text’ );
function woo_custom_order_button_text() {
return __( ‘My Label here’, ‘woocommerce’ );
}