Birendra Maharjan
Forum Replies Created
-
Hi @tanvirh,
Yes, I can use the provided method, but our site is multilingual. How can I handle translations in this case?
Thanks!
Hi @bytefarmer,
Thank you for using our plugin!The validation message is saved to the database after saving the plugin settings, so WPML needs to translate the data from the database, not just the original strings in the code (class-alg-wc-eu-vat-settings-validation.php).
You can modify the message under EU VAT > Validation & Progress > Validating.To translate these messages, please use WPML’s String Translation tool. This video provides detailed instructions: Video link
Let us know if you need further assistance!
Thank you!Hi @mervyntsao,
It seems the WPFactory Wishlist plugin isn’t installed on your site. Have you made any changes to the plugin recently?
If you’d like help with it, please install the plugin, and we’ll be happy to assist you further.
Thank you, and let us know if you need any help!
Best regards,Hi @danidub,
Sorry to inform you that currently, it is not possible to control the placement of the EU VAT Number field in the block-based checkout. However, if you wish to move the field, you can use the shortcode checkout instead of the block checkout.
Regarding the placeholder text “{billing_eu_vat_number}” showing up in the collapsed Shipping and Billing sections, we’ve removed that shortcode. It’s currently not compatible with the block checkout. We will add it when WooCommerce fully supports it.
Thank you.Hi @ooksanen,
- Currently, it is not possible to control the placement of the EU VAT Number field in the block-based checkout. However, if you wish to move the field, you can use the shortcode checkout instead of the block checkout. This may offer more flexibility for customizing the layout.
- We have released a new version of the plugin that fixes the validation message for account registration.
- We’ve also removed the placeholder text that was showing in the collapsed Shipping and Billing address sections, as this feature isn’t supported by the block checkout yet.
If you have any more questions or need anything else, feel free to ask.
Thank you.Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Keep VAT for specific productIt’s normal for WooCommerce to display shop prices with or without VAT based on your settings. To change this, go to WooCommerce > Tax > Tax Options > Display prices in the shop and choose your preferred option.
Please try it and let us know if it works.
Thank you.Hi,
We’ve just released v4.7.0, which addresses the fatal error you reported. Please let us know if everything is working fine now.
Thank you.
Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Security vulnerabilityHi,
We’ve released a new version of the plugin (v3.0.0) that resolves the Wordfence/Patchstack error.
Thank you.
Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Keep VAT for specific productHi @kapa330,
Please update the plugin to the latest version v3.0.0, released today. Now you can keep the VAT for specific products, even if a valid VAT number is entered.To enable this, just:
Go to All Products > Select Product > Product Data > General > Check the box for Keep VAT for this product.
Please give it a try! If you have any questions, let us know.
Thank you.Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Untranslatable stringsHi @cvl01,
We’ve released a new version that fixes the translation issue.Please check version 3.0.0, and let us know if you have any issues.
Thank you.
Hi @maxms,
We tested the plugin with logged-out users, and everything seems to be working fine on our end. Could you please make sure you’re using the latest version of the plugin? If you’re still experiencing the same issue after updating, just let us know, and we’ll look into it further.
Thank you for your patience and understanding.
Best regards,
Forum: Plugins
In reply to: [Name Your Price: Make Your Own Offer for WooCommerce] Hide priceHi @iuda,
We’ve recently updated the plugin! You can now make the price field optional or hide it entirely by using these code snippets:
To make the price field optional:
// Remove 'required' from the price field.
add_filter( 'alg_wc_po_form_field_price', function ( $data ) {
$data['is_required'] = false;
return $data;
} );
add_filter( 'alg_wc_po_accepted_price', function ( $price ) {
return empty( $price ) ? true : $price;
} );To hide the price field completely:
// Remove the price field entirely.
add_filter( 'alg_wc_po_form_field_price', '__return_false' );
add_filter( 'alg_wc_po_accepted_price', '__return_true' );Please ensure that you update the plugin before adding this code. If you have any further questions, just let us know!
Thank you!
- This reply was modified 1 month, 3 weeks ago by Birendra Maharjan.
- This reply was modified 1 month, 3 weeks ago by Birendra Maharjan.