Advertisement
eventsmanager

override success payment message

Jun 4th, 2024
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Translate Text using gettext filter/hook
  5. * As for where to paste this : http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
  6. */
  7. function change_text( $translated_text, $text, $domain ) {
  8. switch ( $translated_text ) {
  9. case 'Thank you for your payment. Your transaction has been completed an you will soon receive an email confirmation.' :
  10. $translated_text = 'Gracias por tu pago. Su transacción se ha completado y pronto recibirá una confirmación por correo electrónico.;
  11. break;
  12.  
  13. }
  14. return $translated_text;
  15. }
  16. add_filter( 'gettext', 'change_text', 100, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement