Upendra Kapse
Forum Replies Created
-
Hello,
I am afraid we have not tested the plugin with article retrieving sites but can you please tell me how exactly you have added these files on your website? Are they added as links? Also, please tell me an example article retrieving site too.
Kind Regards,
Upendra.Hi Chris,
No, I am afraid it is not possible out of the box right now to auto change to a custom order status for partial refund orders with either of the free or paid versions.
Kind Regards,
Upendra.Hi @gainhealthhk,
That is a bit strange, as we have not encountered this before.
Can you please share some details about the site like the screenshot of your plugin settings, the PHP version on your server, I also recommend you try changing the logo image to some other image?
I am also showing the error to our developer to find out the cause of the error and I will get back to you with an update on this.
Kind Regards,
Upendra.Hi @topps,
First of all, regarding the difference in the Invoice are you referring to the fact that from the email link the Invoice you see is of full width while when printed from the admin side it is the boxed size? Apart from that, contentwise both the Invoices are the same.
The thing is the URLs for frontend and backend are different and they generally have different parameters too. But I showing the code change that you have mentioned to our developer and I will get back to you on this once I hear back from them.
Also, can you tell me what exact change you made manually to the Open print view in browser link when the Invoice appeared correctly for you?
Kind Regards,
Upendra.Hello,
The example code to add two custom fields to the Invoice will look like this:
/** * Add this code snippet in functions.php file of your currently active theme. * An example that adds a 'VAT' and 'Customer Number' 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 ) ); } if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) { $new_fields['your_meta_field_name'] = array( 'label' => 'Customer Number', '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 );
I hope this helps.
Kind Regards,
Upendra.Hi @joaquinreyes,
First of all apologies for the delay in getting back to you on this.
I just tested this on our end with 6 select box fields added with the official WooCommerce Product Add-ons plugin and it worked well. All the 6 fields appeared fine in the Invoice as you can see in this screenshot: https://prnt.sc/26bxisn
Can I request you to share screenshots of your product add-ons setup so that we can do a similar setup and try and replicate the issue?
Kind Regards,
Upendra.Hi @chodges84,
No, the issue with disabling the delivery date for the featured products is not there in the Pro version of the plugin. It is working well on the Pro version and we will get this fixed for the lite version as soon as possible too.
For your other question about the local pickup, I am afraid if the product is set to featured the date field will not appear for both the delivery and pickup shipping methods.
But for the requirement you mentioned about making a particular product available on a specific date, instead of making a Featured product and disabling the delivery date for it I recommend you to assign a unique category to this product and then with the Pro version create custom settings for this category and enable only 13th February as the delivery/pickup date in this custom settings.
I hope this helps.
Kind Regards,
UpendraHello,
I am afraid I did not understand the requirement clearly. Can I request you to explain it in a bit more detail? I am guessing you are referring to the Delivery Note?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Remove Speacial Note OrderHello,
Can you please tell us how you have added this field for the Order notes? Is it added using some custom product fields plugin?
It does not look like the default Order Notes field that appears on the checkout page.
Kind Regards,
Upendra.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.