Guest User

Untitled

a guest
Nov 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter('wf_alter_invoice_tax_label', 'alter_invoice_tax_label', 10 , 1);
  2.  
  3. function alter_invoice_tax_label($tax_label){
  4.  
  5. $tax_label = 'ภาษีมูลค่าเพิ่ม';
  6. return $tax_label;
  7.  
  8. }
Add Comment
Please, Sign In to add comment