Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Created October 14, 2020 13:03
Show Gist options
  • Save hedqvist/a02d70220f1fc95a763ebc23d0a17db6 to your computer and use it in GitHub Desktop.
Save hedqvist/a02d70220f1fc95a763ebc23d0a17db6 to your computer and use it in GitHub Desktop.
Order Reviews - Translate text
<?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