Upendra Kapse
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Add Custom FieldHi @1796media,
First of all, apologies for the delay in getting back to you on this.
We do have a filter using which you can add a custom field to the Invoice using the meta key of that field. Here’s an example code snippet that will help you do this:
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 );
You can use the meta key for your delivery date field in the above code snippet to add your field to the Invoice.
Hi @ma7aba-star,
First of all, apologies for the delay in getting back to you on this.
We do have a filter using which you can add a custom field to the Invoice using the meta key of that field. Here’s an example code snippet that will help you do this:
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 );
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Multiple copies of invoiceHi @is4lman,
First of all, apologies for the delay in getting back to you on this.
I am afraid right now there is no direct way to do this. Can you please confirm if you want to print these three copies in different colors for the Invoice? Or you want to have a different color of header in the Invoice, delivery note, and receipt?
Kind Regards,
Upendra.Hi @iuda,
First of all, apologies for the delay in getting back to you on this.
Here’s a filter we have using which you can change the fonts on the Invoice:
/**
* Add this code snippet in functions.php file of your currently active theme.
*/
function example_serif_font_and_large_address() {
?>
<style>
#page {
font-size: 1em;
font-family: Georgia, serif;
}.order-addresses address {
font-size: 2.5em;
line-height: 125%;
}
</style>
<?php
}
add_action( ‘wcdn_head’, ‘example_serif_font_and_large_address’, 20 );You can adjust the font size in the above snippet as per your requirement.
Kind Regards,
Upendra.Hello @oummanet,
First of all, apologies for the delay in getting back to you on this. Are you still facing this issue? If yes, you can send us a screenshot by capturing it using a screenshot tool and share the screenshot link with us here: https://prnt.sc/
Or you can email us on support at tychesoftwares dot freshdesk dot com.
Hi @facepaintworld,
Can you please tell us what is the exact compatibility issue you face when both these plugins are used together? Also, please share the exact plugin page URL that you are referring to.
If it is a paid plugin, can you share a copy of the plugin with us on support at tychesoftwares dot freshdesk dot com so that we can temporarily activate it on our local test site to see what the compatibility issue is?
If this is something that can be fixed from our end we will do our best to help.
Kind Regards,
UpendraHI @tdsshah,
I am afraid right now there is no direct way in the plugin to print separately for each item in the order. You will be able to print the Invoice, delivery note, and receipt per order only.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Select delivery weekHello @kombimedia,
Thank you for confirming this. But as I mentioned in my last response I am afraid right now there is no direct way in the plugin to let the customer choose their preferred delivery week.
Regards,
Upendra.Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Select delivery weekHello @kombimedia,
I am afraid right now it is not possible to let the customer select a delivery week, they can only select a delivery date.
Do you want to let them select, for example, the first week of June, the second week of June, etc. from a dropdown option?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] plugin capabilitiesHi @hairyashell,
Apologies for the delay in getting back to you on this.
Yes, you will be able to set different lead time for both delivery and pickup by creating custom delivery settings based on the shipping method.
Hi @adrimol84,
Apologies for the delay on this.
Yes, you will be able to set up a discount for a particular payment gateway so that the discount applies only when this payment gateway is selected on the checkout page. Also, you will be able to display the discounted price for the respective payment gateway on the single product page but I am afraid the discounted price will not appear on the Shop page.
Kind Regards,
UpendraForum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] adding abandoned orders manuallyHi @shaun1733,
No, I am afraid there is no direct way right now to add the previously abandoned orders manually.
Kind Regards,
UpendraHi @mili909,
Apologies for the delay in getting back to you on this.
Yes, there is an option in the plugin to change the label for the Pickup Locations field so you can easily change it according to your requirement.
Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] plugin capabilitiesHi @hairyashell,
We do have an option to set the Maximum Deliveries based on per product quantity. For this please enable an option named Enable Maximum Deliveries based on per product quantity: which is there under Order Delivery Date>> Settings>> General Settings>> Date Settings.
So, once you enable this option the limit you have set in your custom delivery setting for the Maximum Order Deliveries per day will be calculated based on the total product quantities instead of the number of orders received.
Kind Regards,
Upendra.Hi @mili909,
Yes, the plugin will adapt to the design of your theme. On the frontend, we only have delivery date and time selection fields that will appear on the cart/checkout pages.