Home » Plugins » WooCommerce Eu Vat BB
Description

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

WCEV

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:

  1. Request an invoice: to display the Vat field only if the user requests an invoice.
  2. 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

WCEV

Frontend integration – Billing details page (with the “request invoice” option enabled)

WCEV

Frontend integration – Order details page

WCEV

Email integration

WCEV

Backend integration – Order details page

WCEV

WCEV

Backend integration – Orders list page

WCEV

User profile page (Admin)

WCEV

WordPress theme,

WordPress plugin,

Woocommerce,

GPL Plugins WordPress,

GPLplugins,

Free WordPress plugins,

Free Woocommerce Plugins,

Reviews (0)
0 reviews
0
0
0
0
0

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

READ FIRST

Our business hours are Monday to Friday from 10:00 am to 4:00 pm (GMT-8), any request made outside these hours will be process until next business day. Support and Updates can take 24 to 48 hours. Support provided is for product installation. Please be aware of possible time zone differences when waiting for our reply.

Updates:
  • To receive an email notification when products have been updated, be sure to click on the notification button below the product image.
  • On a standalone item, you will get lifetime updates. If you choose a membership, updates and access to your items will be available as long as your membership is active.
  • We regularly update products as soon as we are notified about an update, we go and download it from the author and update it on our site, but In case the current version of the product is not the latest, You can request an update for the product.
  • We send regular emails advising when products have been updated so please be sure to provide an active email address when you sign up.
Support:
  • If you have any question or need help installing products purchased on our website, please don’t hesitate to contact us.
  • Please note that we are not developers of the provided products, so our technical support capabilities are limited. We do not change product functionality and do not fix developer bugs.
  • We don’t offer any additional author services like author’s support and license keys and we are not affiliated or in any way related to third-party developers or trademark owners. If you want to know more about GNU / GPL License, CLICK HERE.
Abuse Warning:
  • Please note that accounts are monitored and redistribution of our content is not allowed and will not be tolerated.
  • Our system may detect patterns of downloading items from non-end users outside of our fair use policy.
  • Any violation of our terms of use will result in permanent account suspension and no refunds will be issued.
  • Subscriptions can be cancelled at any time from your account control panel.
  • Downloads are strictly subject to our fair use policy.
For more information please read FAQs & Terms of Service.
FOR DAILY UPDATES & SUPPORT
FOLLOW US HERE
Activation

NOTE: 

  • All The Products Are From Original Author
  • All The Files Would Be Untouched And Unmodified
  • Unlimited Website Usage
  • Files Scanned By Norton And Mcafee
  • Free New Version
  • License : GPL
FOR DAILY UPDATES & SUPPORT
FOLLOW US HERE

WooCommerce Eu Vat BB

VERSION
UPDATED
LICENSE GPL
DEVELOPER Codecanyon
SOFTWARE WordPress
TYPE

Original price was: €35.00.Current price is: €1.83.

All the plugins and themes on gplplugins.site are released under the GPL (General Public License) license. It is 100% legal for us to redistribute the products to you. It is completely safe, legal, and legit.

This is the original file from the developer, not modified, not nulled and not malware.

FOR DAILY UPDATES & SUPPORT
FOLLOW US HERE

RELATED PRODUCTS