Created
          October 17, 2018 03:30 
        
      - 
      
- 
        Save kilbot/03369d8d0f00319a0dfc379157168880 to your computer and use it in GitHub Desktop. 
    Custom Shipping Labels
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| // place this in your theme functions.php file | |
| function my_custom_pos_shipping_labels($params){ | |
| $params['shipping'] = array( | |
| 'ex1' => 'Example 1', | |
| 'ex2' => 'Example 2' | |
| ); | |
| return $params; | |
| } | |
| add_filter('woocommerce_pos_params', 'my_custom_pos_shipping_labels'); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment