Viewing 1 replies (of 1 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @rucet,

    Please try adding the below code to your active child theme’s functions.php file.

    add_filter('wf_pklist_alter_tax_info_text','wf_pklist_hide_tax',10,6);
    function wf_pklist_hide_tax($tax_data, $tax_type, $tax_items_total, $user_currency, $template_type, $order)
    {
    	if($template_type=='invoice')
    	{
    		$tax_data='';
    	}
    	return $tax_data;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘HIDE TAX AMOUNT’ is closed to new replies.