Skip to content

Instantly share code, notes, and snippets.

@kilbot
Created October 17, 2018 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kilbot/03369d8d0f00319a0dfc379157168880 to your computer and use it in GitHub Desktop.
Save kilbot/03369d8d0f00319a0dfc379157168880 to your computer and use it in GitHub Desktop.
Custom Shipping Labels
<?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