Bas Elbers
Forum Replies Created
-
It should show up automatically if you enabled it within the WooCommerce > Invoices > General settings tab. If it does not I can advise to contact the author of your theme. They probably did not implement the WooCommerce filter for it.
Forum: Plugins
In reply to: [Invoices for WooCommerce] %s not converting into variableThank you for letting me know that you have fixed it.
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to change words CRN and VAT IDThe easiest way to do it is to use Loco Translate plugin.
You could also use a program called PoEdit which can edit the translation files.Forum: Plugins
In reply to: [Invoices for WooCommerce] Add year prefix on order numberYou can enable the invoice number column which will show the invoice number on the orders list page. Make sure to enable it within the WooCommerce > Invoices > General settings tab. Next up make sure to enable the column within the Screen options of the orders list page.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Slash in prefix ended in error and path traversalThanks Kacper for letting us know. We have fixed the issue by only allowing certain characters. The fix will be added in the next update.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Access deniedIn order to reproduce this issue we will need more information. Follow the steps in the Readme first! topic.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Custom checkout fieldsWe can recommend the WooCommerce EU VAT Number plugin. Our plugin will automatically add the VAT field.
You could also create a custom template and use something like below.
echo $order->get_post_meta( $order->get_id(), '_billing_vat_code', true);Forum: Plugins
In reply to: [Invoices for WooCommerce] Multi Vendor InfoIt would be best to ask the author of the multivendor plugin. We can help you out displaying it on the invoice if you can provide us the meta data.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Remove woocommerce product add on from invoiceCreate a custome template and add this to the CSS. It will hide the item meta.
.wc-item-meta { display: none; }- This reply was modified 6 years ago by Bas Elbers.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Display tax name instead of Β«VAT %sΒ»Set Display tax totals to Itemized in WooCommerce > Settings > Tax and it should show the tax labels.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Change styling of invoice numberFor the invoice info it should be below.
echo esc_attr( $id );Forum: Plugins
In reply to: [Invoices for WooCommerce] Add the payment method on the invoiceUse below code to add the payment method. Make sure to create a custom template.
<?php echo $this->order->get_payment_method_title(); ?>Forum: Reviews
In reply to: [Invoices for WooCommerce] Very reactive support!Wow great rating! I really appreciate it.
Let me know if you have any other suggestions. π
Forum: Plugins
In reply to: [Invoices for WooCommerce] Allow file manipulation after creation.The filter as requested will be added in the next update.
https://github.com/baselbers/woocommerce-pdf-invoices/commit/4cfd3b10598fe8e689fce44eb9cfce50c1faf9faChanged the params and renamed it do. Let me know if you have any other requests. π
Forum: Plugins
In reply to: [Invoices for WooCommerce] Remove woocommerce product add on from invoice/** * Hide order itemmeta on WooCommerce PDF Invoices' invoice template. * * @param array $hidden_order_itemmeta itemmeta. * * @return array */ function bewpi_alter_hidden_order_itemmeta( $hidden_order_itemmeta ) { $hidden_order_itemmeta[] = 'Gift note'; // end so on.. return $hidden_order_itemmeta; } add_filter( 'bewpi_hidden_order_itemmeta', 'bewpi_alter_hidden_order_itemmeta', 10, 1 );According to WooCommerce, above filter should hide the itemmeta.