Editing abstract-wcpdf-order-document-methods.php but nothing change in Invoice
-
Hi,
I’m trying to edit “abstract-wcpdf-order-document-methods.php” file adding echo $shipping[‘tax’]; at line 776 to show shipping tax too. So, the “public function order_shipping” at line 773 is now
public function order_shipping( $tax = ‘excl’ ) {
$shipping = $this->get_order_shipping( $tax );
echo $shipping[‘value’];
echo $shipping[‘tax’];
}
Unfortunately nothing changes creating the Pdf Invoice. Only Shipping value is shown but not Shipping tax.
My setting on Woocommerce=>Tax isYes, I will enter prices inclusive of tax
Which is the problem? How can i show that shipping tax value?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Editing abstract-wcpdf-order-document-methods.php but nothing change in Invoice’ is closed to new replies.