• Resolved deadset

    (@deadset)


    Hi

    When you view an invoice is states in the upper right hand corner the word “INVOICE”, by law we are required to write is as “TAX INVOICE”.

    Is there a way to edit this?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support alexrollin

    (@alexrollin)

    Hello,

    I am checking into this. What is your country, please?

    Thread Starter deadset

    (@deadset)

    Hi,

    I am based in Namibia, Africa.

    Thanks

    Plugin Author Stiofan

    (@stiofansisland)

    Please use this code snippet to change that.

    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
    }

    Thanks,

    Stiofan

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize text on the invoice’ is closed to new replies.