I need to change the order_button_text
for a specific payment gateway (COD in this case).
I could only get it to change globally (for all payment gate
Easy solution, try to add the following code in your theme's function.php
file.
/**
* @snippet Change checkout order button text
* @package WooCommerce
*/
function change_checkout_order_button_text() {
return __( 'Complete Order', 'woocommerce' );
}
add_filter( 'woocommerce_order_button_text', 'change_checkout_order_button_text' );