kenil802
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Move Tax to it’s own line?Hi @ashdolfthepink,
Sorry for the delay in response.
Thank you for appreciating our plugin.
Regarding the query, currently, it is not possible from our plugin to show the tax on its own line.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @mjrrocha,
I had a talk with the developer but currently, it is not possible from our plugin to show the print order notes and print the customer’s account data.
Please let us know if you have any further queries.
Regards,
Kenil ShahForum: Plugins
In reply to: [Arconix FAQ] 5.4.1 Broken collapseHi @rottie,
I have tried to replicate your issue on our staging site, but I am unable to replicate it. To me, FAQ is working fine with the latest version of WordPress.
So, to troubleshoot the issue, can you please inform us whether you added the below line in the shortcode or not. If not, then please try adding it and check whether it is working fine or not.
[faq style=accordion]
Please let us know how it goes.
Regards,
Kenil ShahForum: Plugins
In reply to: [Arconix FAQ] Keyboard accessibility for the Arconix FAQHi @sandyfeldman,
Sorry for the delay in response.
Currently, it is not possible from our plugin to open the FAQ without touching the mouse.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @mjrrocha,
Sorry for the delay in response.
I will pass your query to the developer so I will get back to you once I hear from them.
Regards,
Kenil ShahHi @marcleiton,
Regarding the query, yes, currently our plugin is not compatible with the Mercado Payment Gateway plugin.
However, we have added this as an enhancement in our plugin tweak list but we will not able to tell you the exact ETA for this.
Regards,
Kenil ShahHi @webcodingplace,
Sorry for the delay in response.
Currently, it is not possible from our plugin to apply for the order status as printed automatically.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @dadim,
Sorry for the delay in response.
Can you please add the below code in the functions.php file of your currently active theme and check whether it is working fine or not.
/**
* 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 );Please let us know how it goes.
Regards,
Kenil ShahHi @faisalms7,
Sorry for the delay in response.
Can you please share with us the code which you have written for the product attributes? This information will be helpful to assist you in a better way.
Regards,
Kenil ShahHi @erkange,
Regarding the query, can you please explain to us in a bit more detail like what exactly do you want to achieve from the plugin.
This information will be helpful to assist you in a better way.
Regards,
Kenil ShahHi @edworthymedia,
I have tried to replicate your issue on our staging site, but I am unable to replicate it. To me, when I select certain orders for the delivery notes, it is not showing a blank page.
So, could you please try deactivating all the other plugins except for the WooCommerce and the Print Invoice and Delivery Notes and then check whether the issue still exists or not.
Please let us know.
Regards,
Kenil ShahHi @amoditer,
Thank you for appreciating our plugin.
Currently, it is not possible from both the version of the plugin (Lite and Pro) to add extra price fields for the particular user role.
However, I will ask the developer regarding your query whether it is possible to add it or not and let you know once I hear from them.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @rolfhuiber,
The latest version of the Payment Gateway Based Fees and Discounts Pro plugin has the fix included which is 2.6.2 version.
Please let us know if you face any difficulties.
Regards,
Kenil ShahForum: Plugins
In reply to: [WP Content Copy Protection] Fatal errorHi @edwardsh,
Extremely sorry for the delay in response.
We will check the error and get back to you with an update.
Regards,
Kenil ShahHi @mahdyhigh,
Sorry for the delay in response.
Can you please try adding the below code in functions.php file and then check whether it solves the issue or not.
Code:
function regular_price ( $subtotal, $item, $order ) {
$product = $item->get_product();
$regular_price = $product->get_regular_price();
return $regular_price;
}
add_filter(‘wcdn_formatted_item_price’,’regular_price’,10,3);Please let us know how it goes.
Regards,
Kenil Shah