Cannot translate 'Place order' button
-
Translations for the ‘Place order’ button for the COP payment option do not seem to work. I had to add this code to the theme functions.php file to overrule the English text:
/* Add to the functions.php file of your theme */
add_filter( ‘woocommerce_cop_order_button_text’, ‘woocommerce_cop_order_button_text’ );function woocommerce_cop_order_button_text() {
return __( ‘Bestelling doorsturen’, ‘woocommerce’ );
}
- The topic ‘Cannot translate 'Place order' button’ is closed to new replies.