i saw this reply on a previous topic. but my question is where and how do i add the add
add_filter(‘getpaid_invoice_type_label’,’_my_invoice_label’,10,2); function _my_invoice_label($label,$invoice){ if($label==’Invoice’){ $label = “Tax Invoice”; } return $label }