Search this Topic
How do I configure renewal invoicing?
If you are using our premium plugin, you will have the option to automatically create and send invoices for renewal orders, such as subscriptions. First you will have to download the WooCommerce Subscriptions plugin which you can find here.
Setting i...
Read more
How do I change the more advanced PDF options?
In order to change the more common options for your PDFs, simply add the following action to your themes functions.phpThis filter gives you full control over the mPDF library. Check the mPDF manual for more info.
function bewpi_mpdf( $mpdf, $docu...
Read more
How do I hide 'Order Item' meta?
In order to hide the order item meta from the invoice, simply add the following filter to your themes functions.php
/**
* Hide order itemmeta on WooCommerce PDF Invoices' invoice template.
*
* @param array $hidden_order_itemmeta itemmeta.
*
* @return arr...
Read more
How do I add a fee to the invoice?
In order to add a fee to WooCommerce and your invoice, simply add the following action to your themes functions.php
function add_woocommerce_fee() {
global $woocommerce;
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
...
Read more
How do I allow a specific role to download invoices?
In order to allow a specific role to download invoices, simply add the following action to your themes functions.php
function bewpi_allowed_roles_to_download_invoice($allowed_roles) {
// available roles: shop_manager, customer, contrib...
Read more
How do I use a different template based on an order variable?
In order to use a different template based on an order variable, simply add the following filter to your themes functions.php You can, for example, change the function to use a different template based on the payment me...
Read more
Increasing the WordPress Memory Limit
To address memory limit issues, there are two paths:
Adjust yourselfContact your hosting company
Do It Yourself
To adjust on your own, here are some methods to try. Be aware that this section requires advanced knowledge; it is not basic.
Edi...
Read more
How do I change the invoice date?
In order to change the invoice date, simply add the following filter to your themes functions.php
/**
* Change invoice date to order date in order to regenerate old invoices and keep the date.
*
* @param string $invoice_date date of invoic...
Read more
Install plugin and activate license
The premium version requires the free version to be activated. Follow below steps carefully to be able to receive updates from within your WordPress admin dashboard.
Download the premium plugin from your account.Install the premium plugin on your site ...
Read more
How do I update a PDF that has already been sent out?
Since version 2.9.4 the plugin removed the ability to update the PDF invoice when it already has been sent to the customer. If in what manner you still want to update the invoice, you can do so by resetting a custom field.
Go to ...
Read more