wclovers

Untitled

Mar 28th, 2023
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. add_filter('woocommerce_order_item_display_meta_key', function($display_key) {
  2.     global $WCFM, $WCFMu;
  3.  
  4.     if ($display_key == 'wcfm_tracking_code') {
  5.         $display_key = __('Tracking Code', 'wc-frontend-manager-ultimate');
  6.     }
  7.  
  8.     if ($display_key == 'wcfm_tracking_url') {
  9.         $display_key = __('Tracking URL', 'wc-frontend-manager-ultimate');
  10.     }
  11.  
  12.     if ($display_key == 'wcfm_mark_as_recived') {
  13.         $display_key = __('Item(s) Received', 'wc-frontend-manager-ultimate');
  14.     }
  15.  
  16.     return $display_key;
  17. });
Advertisement
Add Comment
Please, Sign In to add comment