• Resolved andrewscaife

    (@andrewscaife)


    Been trying to find how I can the “PLACE ORDER” text in the button on the checkout form, anyone any ideas how I do it?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author PressMaximum

    (@pressmaximum)

    Hi @andrewscaife

    That is easy, please try to add this to your theme or child theme’s functions.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' ); 
    }
    

    Hope it helps!

    Thread Starter andrewscaife

    (@andrewscaife)

    Worked perfectly, thanks ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change “PLACE ORDER” text in Checkout’ is closed to new replies.