Created
August 9, 2018 13:19
-
-
Save ChromeOrange/85372bc96af48bcac875425b89e4b05e to your computer and use it in GitHub Desktop.
Filters for PDF Invoice totals section
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$output = apply_filters( 'pdf_template_order_subtotal' , $output, $order_id ); | |
$output = apply_filters( 'pdf_template_order_shipping' , $output, $order_id ); | |
$output = apply_filters( 'pdf_template_order_discount' , $output, $order_id ); | |
$output = apply_filters( 'pdf_template_order_tax' , $output, $order_id ); | |
$output = apply_filters( 'pdf_template_order_total' , $output, $order_id ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment