Change checkout submit button text for a specific payment method in WooCommerce

后端 未结 4 1740
小蘑菇
小蘑菇 2021-01-07 11:26

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

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-07 11:54

    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' );
    

提交回复
热议问题