The following filters are available to modify data used in the invoice PDF:
woocommerce_pdf_invoices_meta_data woocommerce_pdf_invoices_order_data woocommerce_pdf_invoices_order_items woocommerce_order_item_permalink woocommerce_order_item_name woocommerce_order_item_quantity_html
How can i acess these information
What do you mean?
I mean, I would like to change some info in the table, like, the client wants the tax price after the final price and wants also that theres an empty line before the final price, I would like to know if and how can I change these informations. Thank you!
What if id like to add product thumbnail images need them to show up in invoice?
That is already a built in functionality by our plugin.
Is there a REST API endpoint to get the genrated invoice?
No sorry but pdfs are saved in uploads foldery
invoice no can be assigned only when order status changed to completed?
Yes!
May i know does packing slip support multi-delivery-addresses?
Not tested, but as you can use any data including custom data it should work.
Ship to:
{{shipping_company}}
{{shipping_first_name}} {{shipping_last_name}}
{{shipping_address_1}} {{shipping_address_2}}
{{shipping_postcode}} {{shipping_city}}
{{shipping_state}} {{shipping_country}}
how can i add phone and email id here what would be the code
Use {{billing_phone}} for phone and {{billing_email}} for email. WooCommerce does not have these data for shipping specific.
i want to buy a plugin but before that i want to clear that can we show
delivery date
delivery time slot
each item discounte price
Yea that is possible 🙂
Hi, how to show “each item discounted price” for the invoice?
Is there a code example on how this used? I have a custom field associated with an order being generated by a plugin that I want to include in the PDF.
Hi, I have one site with the PDF invoice. I’d like to install it also on the second one, but I’d like to merge numbering of the invoices on both sites – site 1: invoice #1, site 2: invoice #2, site 1: invoice #3 and so on (depending on the sales on each of the sites). Is it possible to combine the two somehow?
Well currently not, but we can customize / add this feature for you on Charge. Contact us at
su*****@we******.io
Is it possible to remove billing and shipping addresses, while retaining or adding billing first and last names, plus a custom field from order meta?
Yes sure all invoice fields are fully customizable.
Thanks. Your documentation shows settings for invoices only. I don’t need invoices. I do need packing slips. Possible to configure for packing slips only?
Yes, because they are 2 separate woocommerce Plugins.
So if I buy the plugin “WooCommerce PDF Invoices & Packing Slips” from your site, I actually get two separate plugins? Then where is the documentation that shows how the packing slip plugin works?
Yes correct. The setup is 90% the same.
What if I added a custom field to my WooCommerce Checkout (i.e. VAT Number), can I add that to the invoice?
Yea our plugin supports ALL custom invoice fields.
Is there any option to add date in the invoice? The plugin I am using has no option to date the invoice, so what are the date options? if there date option then i will buy this plugin
Yea you can use the order created date or put in any custom date if you want.
Hi, it seems that “{{customer_note}}” shortcode in pdf invoices settings-content doesn’t work. If I add in the order editor a note set as “note to customer”, in the pdf invoice it doesn’t appear (obviously even if I click on “Update Invoice” button).
The customer_note field is used only for the comments a customer can do during checkout.
Is there a way to add a shortcode for the PDF download on the Thank you page?
I use woofunnels.
A link on the thank you page is added automatically when you have enabled to show the invoice to customers.
how can i add the created invoices to automatewoo add raw html email?
Sorry we do not know – maybe you ask automatewoo support. Our invoice PDFs are saved in wp-content/uploads/pdf-invocies folder.
Hello, I use Woo Commerce Market Place so I would like to know if it will be possible to generate Invoices only for “seleceted” vendors not all vendors ???
Well currently not, but we can customize / add this feature for you on Charge. Contact us at
su*****@we******.io
Customers are using a coupon code to purchase items. How do I display the coupon codes on the packing slip under the invoice number.
Is there a way to display note on invoice if buyer is from certain country? I mean if buyer is, let’s say from outside of European Union, i want to display additional note on the invoice about VAT calculation. There should be something like simple “If()” statement where I can filter checkout fields information or something similar.
That is not possible by default, but you can add an own variable using our woocommerce_pdf_invoices_order_data filter. Then just get the order and check if the user is outside the EU and add the variable.
i have a custom meta field billing_gst number but after using your filter i am not able to get that data into my invoices
add_filter(‘woocommerce_pdf_invoices_meta_data’, ‘add_billing_gstnumber_to_pdf_invoice’, 10, 2);
function add_billing_gstnumber_to_pdf_invoice($meta_data, $order) {
// Get the billing GST number from the order
$billing_gstnumber = get_post_meta($order->get_id(), ‘billing_gstnumber’, true);
// Add GST number to the meta data array
if (!empty($billing_gstnumber)) {
$meta_data[‘Billing GST Number’] = $billing_gstnumber;
}
return $meta_data;
}
using this function to fetch data but not able to do
add_filter(‘woocommerce_pdf_invoices_meta_data’, ‘add_billing_gstnumber_to_pdf_invoice’, 10, 2);
function add_billing_gstnumber_to_pdf_invoice($meta_data, $order) {
// Get the billing GST number from the order
$billing_gstnumber = get_post_meta($order->get_id(), ‘billing_gstnumber’, true);
// Add GST number to the meta data array
if (!empty($billing_gstnumber)) {
$meta_data[‘Billing GST Number’] = $billing_gstnumber;
}
return $meta_data;
}
using this function to fetch data but not able to do
{{add_billing_gstnumber_to_pdf_invoice}}
add_custom_meta_to_pdf_invoice
{{_billing_gstnumber}}
{{meta__billing_gstnumber}}
{{Meta_billing_gstnumber}}
tried all but not able to fetch data
Please submit a ticket on our website or send your request including your valid codecanyon purchase code to
su*****@we******.io