Upendra Kapse
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Invoice in RTLHi @dongreen,
I am glad to know that you have found a solution for this and thank you so much for posting it here in the forums 🙂
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Barcode IntegrationHi Arijit,
I am afraid we have not tested the compatibility with the WooCommerce Order Barcode plugin that you mentioned so the integration is not there right now out of the box.
Kind Regards,
Upendra.Hello,
For the print buttons to appear on the Orders listing page make sure that the Actions are enabled under the Screen Options on the Orders page as you can see in this screenshot: https://prnt.sc/1yz2ofh
Also, make sure that the following options are also enabled under the WooCommerce>> Settings>> Print section: https://prnt.sc/1yz2u2i
I hope this helps.
Kind Regards,
Upendra.Hello,
Are you referring to the attribute the customer selected on your variable product? If yes, the selected attribute will appear automatically on the Invoice as you can see in this screenshot: https://prnt.sc/1xol4aj
Also, if it is a custom order meta field that you have added on the checkout page then please make sure that the meta key that you have used matches with the meta key of your author field. And the above snippet adds two fields so you can remove one of the if conditions.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print button does not workHello,
We display the Invoice in a popup so can you check if you have allowed popups to open under your Chrome and Internet Explorer settings?
Hello,
I am afraid right now we only have the option to print the Invoice on My Account page. The option to print the delivery note and receipt is there for the admin of the site only in the backend.
It will require custom implementation if you want to give the option to print the delivery note and receipt to the customer on My Account page too.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print buttons not workingHello,
When you click on the Print Invoice button it should display the invoice in a popup like this: https://prnt.sc/1vnnqh0
For some reason, the popup might not be working on your end and hence you don’t see the Invoice. Can you check if there is any javascript conflict error in the browser when you try to print the Invoice?
Kind Reagrds,
Upendra.Hello,
I am happy to know that you were able to find a solution for this and thank you so much for posting it here.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [WP Content Copy Protection] Blocking Source CodeHello,
I am afraid the free version or even the pro version of the plugin does not block the source ccode via the developer tools right now.
Kind Regards,
Upendra.Glad I could help 🙂
Hello,
I understand your concern but the thing is we use a WooCommerce function to display the order summary in the Invoice and it returns the full individual product prices and calculates the discount for the whole order. The Email Invoice/order details to the customer is a default WooCommerce feature and that also displays the discounts for the whole order together as you also confirmed.
But I understand your concern and will ask our development team if we can add a filter to display the discounted prices for individual products to like how it appears on the edit order page on the admin side and will update you here if we can do it.
Kind Regards,
Upendra.Hello,
The easiest way to change this string Print and maintain this change after the plugin update will be to change it through the translation .po file. You can use a plugin like Loco Translate and translate this string according to your requirement by adding a translation for your language.
The string can also be changed directly from the class-wcdn-theme.php(line number 154) file which is there under \wp-content\plugins\woocommerce-delivery-notes\includes\ folder.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Shop logoHello,
To center your logo inside the Invoice please try adding the following code snippet either in the functions.php file of your active theme or as a snippet using the Code Snippets plugin:
function example_customize_invoice() { ?> <style> .order-branding .company-logo { margin-left: 250px; } </style> <?php } add_action( 'wcdn_head', 'example_customize_invoice', 20 );You can adjust the margin according to your requirement here in the above code snippet.
Kind Regards,
Upendra.Hi @grinbin, I am glad to know that worked well 🙂
@qtfish Glad to know that worked well 🙂