Kousik Mukherjee
Forum Replies Created
-
Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Security vulnerabilityHello,
Released a new version with “Fix – Cross-Site Scripting vulnerability.”
Please check the version 2.12.13
Thank you.Hello @delucks,
The translation file for this plugin has been generated, and we will be releasing a new version by the end of this week, which will include some updated translations.
Could you please send screenshots of any specific areas where the translation is not being generated to our support email? This will help us address and generate the missing translations promptly.Best regards,
Kousik MukherjeeForum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Security vulnerabilityHi @nickk40,
Thank you for informing us about this.
We are working on it and will release a new version with the fix. If you receive any notifications from Patchstack or Wordfence, please let us know.Regards,
Kousik MukherjeeForum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Price suffix in shopHello,
You can try using this code within the condition when adding a filter for price hooks:
add_filter( 'woocommerce_get_price_html', 'alg_euvat_custom_price_suffix', 999, 2 );
function alg_euvat_custom_price_suffix( $price_html, $product ) {
if ( alg_wc_eu_vat()->core->is_valid_and_exists() ) {
$price_html .= ' ' . __('VAT Excluded', 'woocommerce');
} else {
$price_html .= ' ' . __('VAT Included', 'woocommerce');
}
return $price_html;
}It should work like this. You can play with this type of code.
Regards,
Kousik MukherjeeForum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] BUG: $order_id does not existHello @laptoptitan,
Thank you for identifying the issue. We will fix it as soon as possible and release a new version with the solution.
Regards
Kousik MukherjeeHello @whywhywhy,
Thank you for your understanding.
We would be happy to assist you if you reach out to our official support team.Regards,
Kousik MukherjeeHi?@rantakemisti,
As you want to show or hide the VAT field based on the product type or category, I would like to ask what should happen if the cart contains a mix of products — some requiring VAT and others not. Should the VAT field be shown or hidden in such cases? I believe there might be additional complexities to consider.
You can also reach out to us directly through our official support email for further assistance.
Regards,
Kousik MukherjeeHello @whywhywhy,
Please check version 2.12.11 and try enabling the option:
Validation & Progress > Remove validation colorRegards,
Kousik MukherjeeHello Lulian,
We also have a shortcode specifically for the icon:
[alg_wc_wl_icon]
You can try using that as well.
By the way, your customization looks great!
Regards,
Kousik MukherjeeHello,
As per my suggestion, as long as you keep
Validation & Progress > Check for matching billing country code disabled, you should be able to check any VAT number. Please try this method.If the issue occurs, you can directly contact our official support.
Regards,
Kousik MukherjeeHello @whywhywhy,
Yes, this can be done.
You can check our next release in a few days; it will be included there.
Regards
Kousik MukherjeeForum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] HPOS compatibilityHi Ramoncassel,
Please update to the latest version (3.0.7) and check what happens. This plugin is already compatible with HPOS. There might be some old data on your site obstructing the compatibility display.
If the latest version fails to detect HPOS compatibility, I recommend deleting the installed plugin and then reinstalling and activating the latest version.
Regards,
Kousik MukherjeeForum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Keep VAT in Base CountryHello @richardpruzek,
I tested the issue you mentioned, and it seems to be working fine. However, I believe checking the EU VAT settings could help address the problem. If you could send three screenshots of the settings page to our support email, it would expedite resolving your issue.
Regards,
Kousik MukherjeeHello @marianssen,
You can call the JavaScript function
alg_wc_eu_vat_validate_vat();
to validate the VAT number programmatically.Regards,
Kousik Mukherjee