Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function filter_translations($translation, $text, $woocommerce) {
  2. if ($woocommerce == 'tribe-events-calendar') {
  3. switch ($text) {
  4. case 'paypal':
  5. $translation = 'Proceed to check outt';
  6. break;
  7. }
  8.  
  9. }
  10. return $translation;
  11. }
  12. add_filter('gettext', 'filter_translations', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement