Change text button “add to cart” able to translation
-
Hi!
I put in functions.php this code to change the label of the “add to cart” button. Here is the code:
add_filter( 'woocommerce_product_add_to_cart_text', 'nlwc_custom_button_text' ); function nlwc_custom_button_text() { return __('Aggiungi '); }
Is this solution able to be translated with Poedit(for example)?
I tried to insert <?php _e(‘Aggiungi’, ‘theme’); ?> instead of AGGIUNGI, but I received a critical error.
How can I do to be able to translate the button add to cart in my theme?
Thanks a lot
CarloThe page I need help with: [log in to see the link]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Change text button “add to cart” able to translation’ is closed to new replies.