Advertisement
wclovers

Untitled

Jan 30th, 2024
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. function cf_replace_store_and_shop_texts( $translation, $text, $domain ) {
  2.     $allowed_domains = [
  3.         'wc-frontend-manager-delivery',
  4.     ];
  5.  
  6.     if( in_array( $domain, $allowed_domains ) ) {
  7.         $find = ['Delivery Persons'];
  8.         $replace = ['HEBREW_TRANSLATION_GOES_HERE'];
  9.         $translation = str_ireplace( $find, $replace, $translation );
  10.     }
  11.  
  12.     return $translation;
  13. }
  14. add_filter('gettext', 'cf_replace_store_and_shop_texts', 10, 3);
  15. add_filter('ngettext', 'cf_replace_store_and_shop_texts', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement