Hi @barnabas1,
Challan Free doesn’t have a feature to show shipping total with “excl. Tax” and “incl. Tax”.
For translation, you have to paste in the condition the whole string, not part of it. For example, you want to translate “Items Subtotal” then you have to paste it in a condition just like this.
add_filter('woo_invoice_filter_template_label', 'woo_invoice_filter_template_label_callback', 10, 3);
function woo_invoice_filter_template_label_callback($label, $order, $template){
if($label == 'Items Subtotal'){ // String is case sensetive.
return 'Items Subtotal';
}
return $label;
}