kenil802
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Input Fields for WooCommerce] File uploads with 0 bytesHi @dmcalcada,
Glad that the issue has been fixed on your site.
Do let us know if you need any further help from us.
Regards,
Kenil ShahHi @yonahs,
I have tried to replicate your issue on our staging site, but I am unable to replicate it. To me, the cart page updates when we change the payment method on the checkout page.
So, could you please share the screenshot of the issue which you are facing and also the steps to replicate the issue so that we can try once by following the same steps.
Please do let us know so that we can assist you in a better way.
Regards,
Kenil ShahHi @comyu,
Apologies for the sorry in response.
Could you please try enabling the setting “Info on the single product page” and the “Lowest price info on the single product page” as shown in the screenshot and then check whether it meets your requirement or not. Here the screenshot for the same: https://prnt.sc/tzirvn
Please let us know if you have any further queries.
Regards,
Kenil ShahForum: Plugins
In reply to: [Currency per Product for WooCommerce] Bypass currency converterHi @nedski,
Apologies for the delay in response.
I am afraid that currently, there is no way to charge the specific amount to the product which bypasses the currency converter.
Do let us know if you have any further queries.
Regards,
Kenil ShahHi @jaydisc,
Could you please let us know which shipping plugin are you using on your site so that we can try once with that plugin and see what we can do.
Regards,
Kenil ShahForum: Plugins
In reply to: [Custom Order Status for WooCommerce] Remove Icon from labelsHi @victorlaphille,
I have tried updating the plugin to the latest version and found that the icons are visible along with the labels.
However, I will ask the developer regarding how to remove those, and we will get back to you with an update.
Regards,
Kenil ShahHi @edusz,
I have tried to replicate your issue on our staging site by following the same steps, but I am unable to replicate it. To me, it is showing fine when coming back to the cart page.
Also, for the additional CSS, could you please comment on those CSS lines and then check whether it works fine or not.
Please let us know how it goes.
Regards,
Kenil ShahHi @edusz,
Could you please share the site URL where we can replicate the issue because I have tried to replicate on our staging site, but was unable to replicate it. So, it would be great if you can share the same so that we can check further.
Regards,
Kenil ShahForum: Reviews
In reply to: [Custom Order Status for WooCommerce] Stop Email SendingHi @aungkyaw155,
Apologies for the inconvenience caused due to the order emails not being sent.
However, we have fixed this issue and now the email notifications will work just fine when we set any status i.e custom or the default status.
So, could you please check once whether it is working fine for you or not?
If it works fine on your site, then if possible, it would be great if you can update your rating for the plugin. We will really appreciate it.
Regards,
Kenil ShahForum: Reviews
In reply to: [Custom Order Status for WooCommerce] Blocking standard email notificationHi @illiashenko,
Apologies for the inconvenience caused due to the order emails not being sent.
However, we have fixed this issue and now the email notifications will work just fine when we set any status i.e custom or the default status.
So, could you please check once whether it is working fine for you or not?
If it works fine on your site, then if possible, it would be great if you can update your rating for the plugin. We will really appreciate it.
Regards,
Kenil ShahHi @rverboom,
To add the membership plans to the invoice and the delivery note, could you please try adding the below code and check whether it works or not.
Code:
/** * 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 );Also, please make sure that the field itself should be meta-field.
Please let us know how it goes.
Regards,
Kenil ShahForum: Plugins
In reply to: [Custom Order Status for WooCommerce] Problem whit bulk editHi @hernanmdq,
Thank you for sharing the screenshots.
I have tried to replicate your issue on our staging site, but I am unable to replicate it. To me, when changing status to the custom one, it is working fine.
So, to troubleshoot the issue, can you please share the screenshot of the plugin settings also so that we can try once to replicate the issue by keeping the same on our site.
Please do share so that we can assist you in a better way.
Regards,
Kenil ShahForum: Plugins
In reply to: [Custom Order Status for WooCommerce] Remove Icon from labelsHi @victorlaphille,
Regarding the query, could you please share the screenshot like where exactly do you want to remove the icon from the label?
Please do let us know so that we can assist you in a better way.
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] order timeHi @marcleiton,
To add the order time in the invoice, could you please try adding the below code and check whether it works or not.
Code:
/**
* 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 );Also, please make sure that the field itself should be meta-field.
Please let us know how it goes.
Regards,
Kenil ShahHi @kundap,
I will ask the developer regarding your query and get back to you with an update.
Regards,
Kenil Shah