Guest User

Untitled

a guest
Nov 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter( 'gettext', 'custom_text_woocommerce');
  2. function custom_text_woocommerce($translated)
  3. {
  4. // Set Here the text to replace:
  5. $translated = str_ireplace( 'Company Name', 'Business Name', $translated );
  6. return $translated;
  7. }
Add Comment
Please, Sign In to add comment