kenil802
Forum Replies Created
-
Hi @acon,
I see that the ticket has already been created for your query. So it would be great if we can have our conversation there.
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Translation IssueHi @kajahal,
Apologies for the delay in response.
We will check the translation thing and will fix that in the next update and currently, it is not possible to hide the other two options in the dropdown on the Order details page.
Regards,
Kenil ShahHi @sneakerweb,
We are extremely sorry for the delay.
Could you please add the below code in the functions.php file of your active theme?
Code:
function example_custom_order_fields( $fields, $order ) {
$new_fields = array();
if( get_post_meta( $order->id, ‘your_meta_field_name’, true ) ) {
$new_fields[‘igfw_invoice_number’] = array(
‘label’ => ‘IGFW Invoice Number’,
‘value’ => get_post_meta( $order->id, ‘igfw_invoice_number’, true )
);
}
return array_merge( $fields, $new_fields );
}
add_filter( ‘wcdn_order_info_fields’, ‘example_custom_order_fields’, 10, 2 );This will add the IGFW Invoice Number in the order info like this:-https://prnt.sc/vyxmcq.
Let us know how it goes.
Regards,
Kenil Shah- This reply was modified 5 years, 4 months ago by kenil802.
Hi @webmatthieu,
Apologies for the delay in response.
We will check that code and make the necessary changes in the next update.
Regards,
Kenil ShahHi @andersonmp.
Extremely sorry for the delay in response.
Could you please check whether you have replaced the field name and field value properly or not? Also, could you please share the code which you have added in the functions.php file so that we can check once?
Regards,
Kenil ShahHi @km00,
I am glad we could help you to fix the issue.
It would be great if you can leave a review here: https://wordpress.org/support/plugin/woocommerce-delivery-notes/reviews/
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] printing process nonstopHi @narthanaj,
Apologies for the delay in response.
Could you please let us know that after you click on the print button does the Print box comes up or not?
Regards,
Kenil ShahHi @mysticza,
No problem. We will be happy to help you.
Could you please let us know whether you have made any changes in the style.css file as the invoices in the pdf shared by you look different? Also, could you please let us know whether the bulk action options are coming in the dropdown or not?
Do let us know.
Regards,
Kenil Shah- This reply was modified 5 years, 4 months ago by kenil802.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Product FeeHi @akwholesaledist,
Apologies for the delay in response.
To add the meta field of the product in the product description area you need to add the below code in the functions.php file of the active theme.
Code:
add_filter( ‘wcdn_order_item_fields’, ‘wcdn_product_field’, 10, 4 );
function wcdn_product_field( $array, $product, $order, $item ) {
$new_fields = array();
$new_fields[‘field_name’] = array(
‘label’ => ‘Your field name :’,
‘value’ => get_post_meta( $product->id, ‘_ign_product_fee’, true )
);
return $new_fields;
}Do let us know how it goes.
Regards,
Kenil ShahHi @iuda,
Regarding the query, I am afraid that currently, it is not possible to print the prices without the VAT.
Do let us know if you have any further queries.
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Finnish locale name wrongHi @jeskiv,
Apologies for the delay in response.
I will ask the developer regarding this and get back to you with an update.
Regards,
Kenil ShahHi @dominiksitiweb,
Apologies for the delay in response.
Could you please share the details by emailing us on “support at tychesoftwares dot freshdesk dot com”?
Regards,
Kenil ShahHi @gtsantos,
Regarding the query, the rounding option will round the fee or discount before the product is added to the cart. So, this rounding setting will not work on the whole total amount.
Do let us know if you have any further queries.
Regards,
Kenil ShahForum: Plugins
In reply to: [Payment Gateway Based Fees and Discounts for WooCommerce] Potential – bugHi @ukenpachi,
Regarding the query, could you please let us know where exactly are you find this error? After installing the Klarna checkout plugin or on the error log file? It would be great if you can share the screenshot of the same and the steps to replicate the issue so that it would be easy for us to check in detail.
Regards,
Kenil Shah