Upendra Kapse
Forum Replies Created
-
Hello,
I am afraid this feature to set up different delivery schedules based on shipping methods is not there in the free version of the plugin but we do have this feature in the Pro version of the Order Delivery Date plugin.
Kind Regards,
Upendra.Hello,
Yes, we do have a filter using which you can add the custom fields created with a third-party plugin by using the meta keys for those fields.
You can refer to this example function that adds the VAT field, you can modify this function based on the field title and the field meta key that you want to fetch, you can add this function in either the functions.php file of your child theme or add it as a snippet using the Code Snippets plugin.
/** * An example that adds a 'VAT' field to the end of the list. */ function example_custom_order_fields( $fields, $order ) { $new_fields = array(); if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) { $new_fields['your_meta_field_name'] = array( 'label' => 'VAT', 'value' => get_post_meta( $order->id, 'your_meta_field_name', true ) ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );Kind Regards,
Upendra.Hi @allcodeunknown,
I am afraid we have not tested any other similar plugin with the WP Content Copy Protection plugin so will not be able to recommend one.
Kind Regards,
Upendra.Hi Martin,
The thing is we have not tested the compatibility with the Product Add-ons Ultimate plugin that you mentioned. But we do provide compatibility with the official WooCommerce Product Add-ons plugin. So, the add-ons added with that plugin will appear in the Invoice.
I recommend you to refer to the code in print-content.php file starting from line number 120 that is about the product add-ons plugin compatibility and similarly you can integrate the Product Add-ons Ultimate plugin you are using too.
Kind Regards,
Upendra.Hello,
Can you please verify with the developer of the Order Tags plugin that the meta key you have used(wcot-order-tags-order-tag) to fetch the tag is correct?
The remaining code looks good so it should have worked well.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Removing Shipping AddressHi Tishina,
Please add the below code snippet either in the functions.php file of your child theme or add it as a snippet using the Code Snippets plugin on your site to remove the shipping address from the delivery note:
function example_serif_font_and_large_address() { ?> <style> .delivery-note .shipping-address { display:none; } </style> <?php } add_action( 'wcdn_head', 'example_serif_font_and_large_address', 20 );Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Unsuccessful PrintHi Tishina,
Apologies for the delay in getting back to you on this.
This is strange and we have not encountered it earlier. These errors don’t seem to be coming from the plugin but from the browser you are using. Can you perhaps check this once on a different browser or try reinstalling your browser and then check?
Kind Regards,
Upendra.Hi @katmacau,
That is sad to know because as I said this is working fine on our end no other customers have reported the same issue too so I think this could have been some compatibility issue on your site.
Kind Regards,
Upendra.Hello,
I am afraid we have not tested the plugin with any Syntax highlighter plugins so will not be committed to how it will work. But you can consider adding the code snippets in an iframe tag because right now the content added in an iframe tag is not protected.
Kind Regards,
Upendra.Hello,
I am guessing you are referring to this Create invoice numbers option on the print settings page: https://prnt.sc/20x5ayw
I just tried enabling and disabling that option and it worked well for me on our end. Can you please make sure you are using the latest version of our plugin and of WooCommerce?
Also, only the Numbering option is staying ticked for you all the other options on the Print Settings page are also not updating?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Barcode IntegrationHi Arijit,
One of our other users has done this integration with the WooCommerce Order Barcodes plugin. You can refer to this post to see how they have done this integration:
https://wordpress.org/support/topic/woocommerce-barcode/Kind Regards,
Upendra.You can also refer to this forum post in which one customer has posted a solution for this with the same WooCommerce Order Barcodes plugin:
https://wordpress.org/support/topic/woocommerce-barcode/- This reply was modified 4 years, 8 months ago by Upendra Kapse.
Hello,
Yes, I am able to replicate this issue on my iPhone too so this seems like an issue with iOS devices. I am escalating this to our development team and we will surely give you an update when we fix the issue.
Kind Regards,
Upendra.Hello,
I just tested the bulk print delivery note option on my end and it worked well for me. It is showing the logo in all the delivery notes that I print in bulk as you can see in this screenshot: https://prnt.sc/20q7b8b
Let me know if I am missing something here.
Kind Regards,
Upendra.Hello,
I am afraid there is no direct setting to add a barcode like this in the print and it will require some custom changes. We do have an example code snippet that helps you add an additional field to the Invoice. Here’s this example function:
/** * Add this code snippet in functions.php file of your currently active theme. * An example that adds a 'VAT' field to the end of the list. */ function example_custom_order_fields( $fields, $order ) { $new_fields = array(); if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) { $new_fields['your_meta_field_name'] = array( 'label' => 'VAT', 'value' => get_post_meta( $order->id, 'your_meta_field_name', true ) ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );But you will have to make changes to this function based on how the barcode is saved by that plugin.
Kind Regards,
Upendra.