anjitha21
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] shipping addressHi @rekers
We would like to better understand which address information you would like to display on all pages and where exactly it should appear.
Could you please share a screenshot or sample PDF showing the issue?
Just to clarify, do you mean that when the document has 2–3 pages, you would like the customer’s address information to be displayed on all pages instead of only the first page?
Please let us know so we can guide you accordingly.
Hi @kt77
Could you please let us know how the Order Manager is trying to download the invoice?
Are they downloading it from the WordPress backend or from the email received?
Also, please share a screenshot of the issue. This will help us better understand the issue.
Additionally, please check whether the Order Manager user role is set as Administrator. If not, kindly add their email address in the Custom Email Address section as shown in the screenshot below:
https://prnt.sc/2neN7-09UU–After checking the above, please let us know the results so we can assist you further.
Thank you for the update.
I am glad to hear that everything looks good so far. Please feel free to reach out anytime if the client reports any other issues or if you need further assistance.
Also, if you are happy with our support, we would really appreciate it if you could leave us a quick review here.
Your feedback helps us a lot.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Lost all custiomized fieldThank you for the update. I am glad to hear that new version is working much better and that your customized fields are displaying.
Regarding the issues you mentioned:
- For the duplicated “Choosing delivery date” and “Choosing delivery time” fields, could you please share a screenshot of the invoice showing the issue?
- This will help us check why the fields are appearing twice.
- About the currency display, you can choose whether to display the currency as a symbol (€) or as text (Euro) from the General Settings of the plugin:
https://prnt.sc/CkwxpiLjXkRm
For translating “Subtotal” into “Sous total”, you can add the translation string and it should get translated correctly.
Please let us know which translation plugin you are using, and whether you encounter any errors while adding the string.
- Yes, it is possible to remove the “Shipping” line between “Subtotal” and “Total”. You can disable it from:
Template Settings → Product Table Charges
Reference screenshot:
https://prnt.sc/dF6ygeNkuVHwPlease check and let us know if you need any further assistance.
Hi @mathis70
To investigate this further, could you please email us at ‘support at tychesoftwares dot com’ with the relevant details and temporary admin access to your site? This will help us troubleshoot the issue more effectively.
We appreciate your cooperation and look forward to resolving this for you.
Hi @mathis70
We checked this issue locally using the Extra Product Options plugin, and everything appears to be working correctly from our end. We also performed additional debugging and could not identify any conflicts.
Since the issue seems to be occurring only on your site, could you please provide temporary access details so that we can investigate the issue directly in your setup?
This will help us identify if there is any site-specific conflict or configuration causing the problem.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] total order taxesHi @antonic93
Hi there,
Currently, the invoice displays the product price including tax in the Price and Total columns, while the tax amount (VAT) is also shown separately in the totals section at the bottom of the invoice.
Could you please clarify which behavior you would prefer?
Option A:
Show the tax-inclusive price per item in the Price and Total columns (for example, $480.00 instead of $400.00), while still keeping the separate VAT/tax row visible in the totals section.Option B:
Show the tax-inclusive price per item in the Price and Total columns and remove the separate VAT/tax row from the totals section entirely.Please let us know which option matches your requirement best.
The old code may not work correctly with the new customization file because the
wcdn_order_item_afterhook arguments were changed in v7.x.Previously it passed
( $product, $order, $item ), but now it passes( $item, $order, $template ), so$product->get_meta()will no longer work directly and the callback needs to be updated accordingly.Our developer have modified the code according to the new hook arguments introduced in v7.0.
This updated version should work correctly with the latest customization file.
// @desc: adds product tag/bin to receipt
add_action( 'wcdn_order_item_after', 'add_product_tag_to_receipt', 10, 3 );
function add_product_tag_to_receipt( $item, $order, $template ) {
if ( ! is_a( $item, 'WC_Order_Item_Product' ) ) {
return;
}
$product = $item->get_product();
if ( ! $product ) {
return;
}
$binr = $product->get_meta( 'r8_bin' ); // Get bin for receipt.
if ( ! empty( $binr ) ) {
echo '<p><strong>BIN:</strong> ' . esc_html( $binr ) . '</p>';
}
}Hi @mathis70
We are sorry to hear that the issue persist.
We will check again this with our developer and get back to you with an update.
Sorry for the inconvenience caused with the recent update.
Thank you for explaining the issues in detail. The space issues were sorted out in the new version v7.1.2 which was released last week.
Regarding the custom data, there were so many codebase improvements performed. Therefore, the template file changed.
Here are the steps for the template override in the new version:
Open your active theme folder:
wp-content/themes/your-theme/
Create a folder namedwoocommerce-delivery-notesinside it- Find the template file you want to change inside the plugin:
wp-content/plugins/woocommerce-delivery-notes/templates/ - Copy that file into the folder you created in step 2, keeping the same filename
- Edit the copied file in your theme — the plugin will use it automatically
Available template files:
invoice.php— Invoicereceipt.php— Receiptdeliverynote.php— Delivery Notepackingslip.php— Packing Slipcreditnote.php— Credit Notebase.php— Shared layout used by all documents
Override styles
Find the CSS file you want to change inside the plugin:wp-content/plugins/woocommerce-delivery-notes/templates/css/- Copy it into your theme, recreating the same folder structure under
woocommerce-delivery-notes/css/ - Edit the copied file — your styles will be loaded instead of the plugin’s
Available CSS files:
css/style.css— Applies to all documentscss/html/style.css— Applies to browser print onlycss/pdf/style.css— Applies to PDF output only
Notes
- If using a child theme, create the folder in the child theme — not the parent
- The override affects only the live print preview and the document PDF generation. The frontend preview on the admin page isn’t affected.
Please try from your end and let us know if there are any further questions.
Hi @vijustin
Yes, it is possible by overriding the template.
Here are the steps for the template override:
Open your active theme folder:
wp-content/themes/your-theme/
Create a folder namedwoocommerce-delivery-notesinside it- Find the template file you want to change inside the plugin:
wp-content/plugins/woocommerce-delivery-notes/templates/ - Copy that file into the folder you created in step 2, keeping the same filename
- Edit the copied file in your theme — the plugin will use it automatically
Available template files:
invoice.php— Invoicereceipt.php— Receiptdeliverynote.php— Delivery Notepackingslip.php— Packing Slipcreditnote.php— Credit Notebase.php— Shared layout used by all documents
Override styles
Find the CSS file you want to change inside the plugin:wp-content/plugins/woocommerce-delivery-notes/templates/css/- Copy it into your theme, recreating the same folder structure under
woocommerce-delivery-notes/css/ - Edit the copied file — your styles will be loaded instead of the plugin’s
Available CSS files:
css/style.css— Applies to all documentscss/html/style.css— Applies to browser print onlycss/pdf/style.css— Applies to PDF output only
Notes
- If using a child theme, create the folder in the child theme — not the parent
- The override affects only the live print preview and the document PDF generation. The frontend preview on the admin page isn’t affected.
Please check it on your end and let us know if there are any questions.
Hi @kornelije
Thank you for the update.
I’m glad to hear that the issue has been resolved on your end.
If you have a moment, we’d really appreciate it if you could share your feedback or leave us a review — it helps us improve and assists other users as well.
Please feel free to reach out if you need any further assistance.
This issue has now been fixed and the updated plugin version has been released.
Please update the plugin to the latest version (v7.1.2) and check from your end.
Let us know if you need any further assistance.
We appreciate your patience and understanding.
Hi @kirkstudio
This issue has now been fixed and the updated plugin version has been released.
Please update the plugin to the latest version(v7.1.2) and check from your end.
Let us know if you need any further assistance.
We appreciate your patience and understanding.
Hi @churpiindia
Thank you for your patience.
You can now enable to show the payment method in delivery note: https://prnt.sc/J4LoV_mTyHqz
Please update the plugin to the latest version and check if everything works as expected.