WooCommerce Eu Vat BB
The WooCommerce Eu Vat & B2B (WCEV) seamlessly integrates an additional EU Vat Number Field into your WooCommerce platform. For full details and features, check out the sales page.
The WooCommerce Eu Vat & B2B (WCEV) seamlessly integrates an additional EU Vat Number Field into your WooCommerce platform. It will be dynamically shown during the checkout process only if the selected billing country is part of the European Union. The plugin also offers several other options, like a way to validate the field, make it mandatory or remove the Taxes if a valid Vat number has been entered. Optionally you make the registration process available only for businesses (B2B) with a valid Vat number!
LIVE DEMO
https://www.codecanyondemo.work/wcev/wp-admin
(Shop admin account)
user: demo
pass: demo
(customer account)
user: demo2
pass: demo
DOCUMENTATION
HOW TO AUTOMATICALLY UPDATE THE PLUGIN
To receive automatic updates just install and configure the Envato updater plugin: https://goo.gl/pkJS33 .The official guide that explains how to configure it can be found at the following link: https://envato.com/market-plugin .
THE IDEA
WCEV extends WooCommerce adding an EU Vat Number Field that will be dynamically shown during the checkout process and the user profile page (billing address) only if the selected billing country is part of the European Union. The Shop Admin can also make it compulsory and optionally validate it (the plugin uses the VIES function or simply check if it has a valid format ). It also allows you to not charge the users that enter a Vat number.
CONFIGURATION
By accessing the WooCommerce -> EU Vat Field – Options you can configure the plugin options. You can, for example, disable the required option or show the Require invoice voice by which the customer can request an invoice. Furthermore, once enabled this option, you can also make the field visible only if the user requests an invoice.
VAT VALIDATION
The Vat number can be validated using the VIES function. In case the validation fails, the plugin will not allow the checkout to be completed and it will show a validation warning message (customizable using the Texts menu).
Validation can be also performed by just checking if the Vat number has a valid format.
DON’T BOTHER YOUR USERS WITH UNUSEFUL CHECKOUT FIELDS!
Why ask your customers for Company name and Vat if they are just consumers? WCEV allows you to not bother them!
Using the following options:
- Request an invoice: to display the Vat field only if the user requests an invoice.
- Consumer/Business selector to dynamically display the Company name and Vat fields only if the customer identifies himself as a Business.
TAX EXEMPTION
The WCEV plugin will also allow you to not charge the Vat taxes for users that have inserted a Vat Number. Tax exemption can be applied to all users with a Vat Number (and optionally even for the ones who have the same billing country as the shop base location: WooCommerce -> Settings -> General -> Base Location).
Tax removal will take effect Shop, Product, Cart, and Checkout pages. Once a valid Vat Number has been entered on Checkout, My account -> Billing addresses or Registration pages, item prices, and totals will show and be billed without taxes.
In case you choose to display the Vat field even for non-Eu users, you can also eventually enable the option to remove taxes for non-Eu who enter a vat number. Note, however, that no validation will be performed for those vat numbers.
BUSINESS-TO-BUSINESS (B2B) MADE EASY!
The shop admin can also make the Billing company name field as required! So optionally using this option in conjunction with the VIES Vat validation method and the enabling Tax removal option, shop admin can easily make business-to-business (b2b) sales.
NEW: the new Register page – Only businesses can register option will now allow only valid businesses to register in your store! The entered Vat number will be validated according to the validation options selected and to the selected billing country and if not valid, the user will not be able to register!
VAT NUMBER UNIQUENESS CHECK
Optionally the plugin can perform a uniqueness check in order to avoid different users using the same Vat number.
ITALY SPECIAL FIELDS
In case Italy is selected as the billing country, Codice fiscale, and SDI/Pec fields will be shown. It will be also performed validation on their format.
SPAIN SPECIAL FIELDS
In case Spain is selected as the billing country, NIF / NIE /CIF field will be shown. It will be also performed validation on its format.
GREECE SPECIAL FIELDS
In case Spain is selected as the billing country, in case of business type selection, the “Tax office” and “Business activity” fields will be shown.
LABEL AND TEXT (WPML LOCALIZABLE)
Field labels, placeholders, and validation error messages can be customized using the Text menu. For WMPL users, text can be localized by just switching the current language using the WPML language selector and then entering texts for the current language.
FRONTEND INTEGRATION
WCEV seamlessly integrates the EU Vat Field in the Checkout, My Account, and Order details pages, and in the Order emails. No configuration is required!
BACKEND INTEGRATION
WCEV seamlessly integrates the EU Vat Field also in the backend. The shop admin can retrieve Vat number information and if the user requested an invoice, from the Order details and Orders list pages:
SUPPORT TO ITALY “FATTURAZIONE ELETTRONICA”
In the case of Italy country selection, the plugin will also show the SDI/Pec field that allows the customer to enter its SDI code/Pec address. The shop admin can customize labels, descriptions, and validation messages displayed!
Note on validation: the plugin will only check that the email has the right format or that the SDI code is an alphanumeric code of 7 char length.
ARE YOU A WOOCOMMERCE PDF INVOICES & PACKING SLIPS USER?
If you are using the WooCommerce PDF Invoices & Packing Slips by Wp Overnight plugin to generate invoices and you want to report the user Vat number associated with the order, simply modify the template you are using (usually the templates/Simple/invoice.php) and use the following snippet of code:
< ?php global $wcev_order_model; $vat_number = $wcev_order_model->get_vat_number($order_id); ? >
To retrieve the Vat number. The $order_id variable is the id of the order you want to retrieve the field. To display it, just use the following snippet
echo $vat_number;
ARE YOU A WOOCOMMERCE PRINT INVOICES & PACKING LISTS USER?
If you are using the WooCommerce Print Invoices & Packing Lists by SkyVerge plugin to generate invoices and you want to report the user Vat number associated with the order, simply modify the template part in which you want to display it (templates are located in: templates/pip) and use the following snippet of code:
< ?php global $wcev_order_model; $vat_number = $wcev_order_model->get_vat_number($this->order_number()); ? >
To retrieve the Vat number. $order_id is the id of the order you want to retrieve the field.
For example, if you want to display it among the User details, edit the templates/pip/content/order-table-after.php file. On line 98 you will find a section called Customer Details. Inside the ul (After line 91) you can add something like:
< ?php global $wcev_order_model; $vat_number = $wcev_order_model->get_vat_number($this->order_number()); ? > <li class=""><?php echo '<strong>Vat Number</strong> '. $vat_number ; ?></li>
CUSTOM CHECKOUT FORM NOTICE
The plugin is designed to work with default checkout forms. Adding or removing fields using any plugin, using a custom checkout template (for example some themes may be implementing multi-step checkout), or customizing the Appearance (Appearance -> Customize -> WooCommerce) may cause the plugin to not work.
SCREENSHOTS
Frontend integration – Checkout
Frontend integration – Billing details page (with the “request invoice” option enabled)
Frontend integration – Order details page
Email integration
Backend integration – Order details page
Backend integration – Orders list page
User profile page (Admin)
WordPress theme,
WordPress plugin,
Woocommerce,
GPL Plugins WordPress,
GPLplugins,
Free WordPress plugins,
Free Woocommerce Plugins,
Reviews
Clear filtersThere are no reviews yet.