Upendra Kapse
Forum Replies Created
-
Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Calendar on product pageHello @rrossco @randondev,
I am afraid right now there is no direct way in the plugin to allow the customers to select their preferred delivery date on the product page. But this feature is there in our wishlist for the Order Delivery Date Pro plugin and we will surely consider implementing it in the future.
Also, we do have another plugin named Product Delivery Date using which you can let the customers select their preferred delivery date for individual products on the single product pages.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] FooterHello @charliemp,
To hide the Footer text from the delivery note and to increase the font size of the footer note in the Invoice please add the following code snippet to the functions.php file of your child theme or add it as a snippet using the Code Snippets plugin on your site:
function example_price_free_delivery_note() { ?> <style> .delivery-note .colophon-imprint { display: none; } .invoice .colophon-imprint { font-size: 14px; } </style> <?php } add_action( 'wcdn_head', 'example_price_free_delivery_note', 20 );
You can adjust the font size in the above code according to your requirement.
Kind Regards,
UpendraForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print Invoice Button ErrorHello,
Are you using the WooCommerce Product Add-ons plugin? We have recently fixed a compatibility issue with that plugin.
To apply this fix on your site can you please download the print-content.php file from the below link and replace it at the mentioned path?
?
filename: print-content.php
filepath: wp-content\plugins\woocommerce-delivery-notes\templates\print-order
drpobox link: https://www.dropbox.com/s/wfox3k1zd9ld4lc/print-content.php?dl=0We will be including this fix in the next update of the plugin too.
Kind Regards,
Upendra.Hello,
If I understood it correctly you want to change the label “Customer Note” that is displayed for the order notes added by the customer on the checkout? https://prnt.sc/e3DagBUoYJqk
If yes, you can change this string from a file named print-content.php around line number 271 which is there under \wp-content\plugins\woocommerce-delivery-notes\templates\print-order\ folder.
Let me know if you were referring to something else. A screenshot will help ??
Kind Regards,
Upendra.Hello,
The price before discount and after discount is displayed in the Invoice just like how you see it on the order page in the backend as you can see in this screenshot: https://prnt.sc/Ft2C-7Rkgogy
Please let me know if you are referring to something else.
Kind Regards,
Upendra.Hello,
We have fixed this issue. To apply this fix on your site can you please download the print-content.php file from the below link and replace it at the mentioned path?
?
filename: print-content.php
filepath: wp-content\plugins\woocommerce-delivery-notes\templates\print-order
drpobox link: https://www.dropbox.com/s/wfox3k1zd9ld4lc/print-content.php?dl=0We will be including this fix in the next update of the plugin too.
Kind Regards,
Upendra.Hello,
By default, the phone number field is displayed under the order info section below the billing/shipping address section.
If you want to add an extra phone number field under the shipping address you can use the below-mentioned code snippet in either functions.php file of your theme or using the Code Snippets plugin:
function wcdn_shipping_address( $shipping_address, $order ) { $shipping_phone = get_post_meta( $order->get_id(), '<strong>_shipping_phone</strong>', true ); $shipping_address = $shipping_address . '<br>' . $shipping_phone; return $shipping_address; } add_filter( 'wcdn_address_shipping', 'wcdn_shipping_address', PHP_INT_MAX, 2 );
In the above code the _shipping_phone is the meta key for your shipping phone number field. So, if your meta key for the shipping phone number field is different you can replace it with your meta key.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Delivery note info-listHello,
First of all, apologies for the delay in getting back to you on this.
I just tested this on our end by creating an order manually from the backend and the product purchased in the order is showing up fine in the delivery note as you can see in this screenshot: https://prnt.sc/Y50GDmRQ9_tU
I even tried this with the v4.6.2 and it worked well on that version too. Can you please check if you have done some customizations that could be causing this issue?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [WP Content Copy Protection] Basic protection active for admin??Happy to help ??
Hi @kroutony,
Thank you for pointing this out.
I am forwarding your suggestions to our development team who will review this and will take the necessary action.
Kind Regards,
Upendra.Hello,
In the recent update of the plugin we have made the plugin RTL compatible so did you check this issue after updating the plugin to the latest version 4.6.5?
Are you still facing this issue?
Kind Regards,
Upendra.Hi @topps,
No, I am afraid this change was not done in the recent update of the plugin. The update had some fixes that were already locked in earlier.
But I am asking our developer to look into this and I will surely update you here this week.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [WP Content Copy Protection] Basic protection active for admin??Hi @magicpowers,
No worries, it happens as there are multiple plugins with similar names. And yes ours is the second one and yes we have not updated the plugin recently but it is working just fine with the latest version of WordPress so you install it on your site.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [WP Content Copy Protection] Basic protection active for admin??Hi @magicpowers,
I think there is some confusion. You can disable protection for the users with admin role with the free version too. Did you enable the disable protection for users with admin role option under the Settings>> WP Content Copy Protection section?
Also, the thing is we have taken over this plugin from another developer and at that time this option to disable the protection for the admin users was not there at all. We have added this option in the free version.
We do respect your opinion but I don’t agree that we are manipulating the users in any way. If we are mentioning that a particular feature is there in the free version and later it turns out that you will need the pro version for that then you can call that manipulation. But we are not doing anything of this sort here.
But again like I said we do respect your opinion. Let me know if you can disable protection using the option I shared or not.
Kind Regards,
Upendra.Hello,
I am afraid there is no direct way right now to order the items by SKU in either Invoice or the delivery note.
Kind Regards,
Upendra.