Created
October 14, 2020 13:03
-
-
Save hedqvist/a02d70220f1fc95a763ebc23d0a17db6 to your computer and use it in GitHub Desktop.
Order Reviews - Translate text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @snippet WooCommerce - Translate any text :) | |
* @author Redlight Media AB / Christopher Hedqvist | |
* @compatible WooCommerce 4.6.0 | |
*/ | |
add_filter('gettext', 'translate_update_review_text'); | |
add_filter('ngettext', 'translate_update_review_text'); | |
function translate_myText($translated) { | |
$translated = str_ireplace('Hi %s! We hope that you are satisfied with your purchase with us at %s. We would to know if you would like to update your review.', '%s, do you want to update your review?', $translated); | |
return $translated; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment