Upendra Kapse
Forum Replies Created
-
Forum: Reviews
In reply to: [Order Delivery Date for WooCommerce] No longer worksHello @tsso0120,
We sincerely apologize for the inconvenience with this. However, we did release an update v3.17.1 in which we have fixed this issue. Can I please request you to try updating the plugin to the latest version and then check this?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Still getting Cut-off time errorHello,
That’s strange. This is working for us after the last update.
Just checked this on your site and it seems like the delivery date field which is appearing on your website is not powered by our plugin as the field ID is different compared to what we have in our plugin: https://prnt.sc/D3_7Xwjo4xUj
When you tried this after the update, did you perhaps enable the Enable Delivery Date option under our plugin settings? There is still a minor issue in which that error is coming when you have the Enable Delivery Date option disabled but the Mandatory field option enabled in our plugin. So, can I request you to check this once by making sure that the Enable Delivery Date option is enabled in our plugin and the delivery date field is coming from our plugin?
Kind Regards,
Upendra.Hello @abdoarafa,
It seems like I misunderstood the question. I checked it with a discount coupon applied but it seems like you are referring to the Regular Price and Sale Price you can set in WooCommerce.
The thing is we fetch the order details from WooCommerce only and if you check the edit order page under WooCommerce they don’t display the regular price there too. Only the sale price is displayed in the order details and hence our plugin also fetches the same information. But we will escalate this to our development team as an enhancement that we can consider in the future.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [WP Content Copy Protection] Conflicts with WPformsHi Liliana,
Apologies for the delay in getting back to you on this.
The thing is we have not provided compatibility with the WPForms plugin but I am asking our development team to look into this compatibility issue and if replicated we will surely consider working on this issue for a future update of the plugin.
Kind Regards,
Upendra.Hi @nikeri,
Apologies for the delay on this.
I will get this issue checked on our end with 300+ orders as you mentioned to see how bulk printing works with those many orders and will update you here with the results of the tests. Thank you for your patience.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] FooterHi @charliemp,
The code snippet I sent you seems to be working fine for me for both the changes. Can you please make sure you have applied the correct code?
Like I said you can add it as a snippet using the Code Snippets plugin on your site.
If the issue persists, can you tell me which error you are getting while the website breaks? I think you will be able to see a fatal error under WooCommerce>> Status>> Logs section when the site breaks.
Kind Regards,
Upendra.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 🙂