Home > Back-end >  Want to change Checkout button text in woocommerce
Want to change Checkout button text in woocommerce

Time:12-11

continue to shipping button text and continue to payment button text in website woocommerce checkout is there any solution for this pls help me SH1 Sh2 My website Cosmeticsonlinehubb.pk

I have tried all plugins but still got not solution for this.

CodePudding user response:

you can change by adding this code to your theme's functions.php

function my_custom_checkout_button_text() {
    return 'My Custom Text';
}
add_filter( 'woocommerce_order_button_text', 'my_custom_checkout_button_text' );

You have to change the value which obviously is the My Custom Text to whatever you want.

Friendly, George

  • Related