Guest User

Untitled

a guest
Feb 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_filter( 'gettext', 'webplus_translate_woocommerce_strings', 999 );
  2. function webplus_translate_woocommerce_strings( $translated ) {
  3. // Store all string in an array
  4. $translatedStrings = array(
  5. 'Sale!' => 'ON OFFER',
  6. 'Product Description' => 'Product Specifications',
  7. );
  8. $translated = str_ireplace( array_keys($translatedStrings), $translatedStrings, $translated );
  9. return $translated;
  10. }
Add Comment
Please, Sign In to add comment