Archived topic
Change Woo Commerce Check out button text
3 replies · Started by cpbee on December 17, 2021
Dear Support team,
is there a way to change the default Woo Commerce checkout button text? The German translation says "kostenpflichtig bestellen" - that does not apply to my check out procedure ... I rather want to display: "Jetzt bestellen"
Thanks for your help.
Chris.
Hi Chris,
Do you mean the Place order button on the checkout page?
https://www.screencast.com/t/ZMBoAstzX4SN
If so, here's an Woocommerce PHP filter you can try:
add_filter( 'woocommerce_order_button_text', 'yh_change_checkout_button_text' );
function yh_change_checkout_button_text($button_text) {
return 'Jetzt bestellen';
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Excellent, exactly what I was looking for.
Thanks.
You are welcome :)