• Hi,

    I need some help with editing the button value; ‘Proceed to checkout’ into ‘Nu betalen’
    Where can i change this value?

    Thanks in advance!
    Stay clean and healthy #COVID-19.

    Regards Paul

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

Viewing 1 replies (of 1 total)
  • You can put following code in your theme’s functions.php file at the end:

    function woocommerce_button_proceed_to_checkout() { ?>
     <a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="checkout-button button alt wc-forward">
     <?php esc_html_e( 'Nu betalen', 'woocommerce' ); ?>
     </a>
     <?php
    }

    I hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Change button text’ is closed to new replies.