Rename Tax bands

Last updated on Tuesday, May 31st, 2011

These instructions are intended for those who are proficient in theme development. The relevant tutorials on developing & customising themes can be found on wordpress.org. If this is beyond you, we do offer a competitively-priced theme development service starting at £33 per hour. Please contact us for further details.

Example function to rename two tax bands:

add_filter('eshop_rename_tax_zone','mybands');
function mybands($bands){
  $bands[1]='Apple';
  $bands[2]='Pears';
  return $bands;
}

Add this to your theme’s functions.php file.

WordPress Theme Development

Top