Title: Kybernaut IČO DIČ
Author: Karolina Vyskocilova
Published: <strong>Июль 18, 2016</strong>
Last modified: Мартъи 25, 2026

---

Search plugins

![](https://ps.w.org/woolab-ic-dic/assets/banner-772x250.png?rev=2509635)

![](https://ps.w.org/woolab-ic-dic/assets/icon-256x256.png?rev=2509635)

# Kybernaut IČO DIČ

 By [Karolina Vyskocilova](https://profiles.wordpress.org/vyskoczilova/)

[Download](https://downloads.wordpress.org/plugin/woolab-ic-dic.1.10.5.zip)

 * [Details](https://os.wordpress.org/plugins/woolab-ic-dic/#description)
 * [Reviews](https://os.wordpress.org/plugins/woolab-ic-dic/#reviews)
 *  [Installation](https://os.wordpress.org/plugins/woolab-ic-dic/#installation)
 * [Development](https://os.wordpress.org/plugins/woolab-ic-dic/#developers)

 [Support](https://wordpress.org/support/plugin/woolab-ic-dic/)

## Description

Adds Company & VAT numbers (IČO & DIČ & IČ DPH) to WooCommerce billing fields and
verifies if data are correct. Verification is based either on ARES and VIES database
or only on mathematics. When billing to Czech republic, you can autofill fields 
Company, VAT number, Address, City, and Postcode based on IČO.

The plugin doesn’t support block checkout. [Use shortcode checkout instead or Classic
checkout block”.] (https://kybernaut.cz/clanky/jak-vratit-starou-woocommerce-pokladnu-
misto-noveho-bloku/)

Supports both PHP 7.3+ (soon to be abandoned) & PHP 8.0+.

### Main functionality

 * for CZ as billing country
    - ARES and VIES verification (or mathematically verifies IČO and DIČ)
    - ARES autofill (fields Company, VAT number, Address, City, and Postcode) based
      on IČO
 * for SK as billing country
    - VIES DIČ validation (or just validate the format of values)
 * for EU countries as billing country
    - VIES DIČ validation
 * VAT extempt feature
 * adds fields to IČO & DIČ & IČ DPH WooCommerce frontend: Checkout and My Account
   page
 * allows edits from administration (backend):
    - `Users -> Joe Doe (Edit) -> Billing address of the customer`
    - `E-shop-WooCommerce -> Orders-> Order (show(edit)) -> Billing Information (
      edit)`
 * Enable toggle switch to show/hide input fields (Buying as a company?”)
 * Move Country field above the Buying as a company?” toggle
 * Option to allow on order if if ARES or VIES check fails for technical reasons–
   an alert will be shown in the admin mail and order details

### Compatibility

 * [Kybernaut Mailstep](https://kybernaut.cz/pluginy/kybernaut-mailstep/) by Karolína
   Vyskočilová
 * [WooCommerce SuperFaktura](https://wordpress.org/plugins/woocommerce-superfaktura/)
   by 2day.sk & Webikon
 * [WooCommerce PDF Invoices & Packing Slips for WooCommerce](https://cs.wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/)
   by WP Overnight
 * WooCommerce PDF Invoices and Packing Slips for WooCommerce PRO by Acowebs
 * [WooCommerce Sequential Order Numbers](https://cs.wordpress.org/plugins/woocommerce-sequential-order-numbers/)
   by SkyVerge
 * [Woo Checkout Field Editor Pro](https://cs.wordpress.org/plugins/woo-checkout-field-editor-pro/)
   by ThemeHigh
 * [Fluid Checkout for WooCommerce – Lite](https://wordpress.org/plugins/fluid-checkout/)
   by Fluid Checkout – only partial support
 * Woo iDoklad, Woo Doprava, Woo GoPay etc. by [Toret](https://toret.cz/obchod/ref/106/)(
   affiliate link)

### Requirements

 * SoapClient PHP library for VIES validation (ask your hosting)

### Credits

 * 10up and their [WordPress.org Plugin Deploy](https://github.com/10up/action-wordpress-plugin-deploy)
   and [WordPress.org Plugin Readme/Assets Update](https://github.com/10up/action-wordpress-plugin-asset-update)
   Github Actions
 * [ibericode/vat](https://github.com/ibericode/vat)

If you want to help, join the [Github](https://github.com/vyskoczilova/kybernaut-ic-dic).

## Screenshots

 * [[
 * Checkout validation of IČO.

## Installation

 1. Just follow the standard [WordPress plugin installation procedere](https://codex.wordpress.org/Managing_Plugins).
 2. Go to `WooCommerce->Settings->General` and scroll down for `Kybernaut IČO DIČ options`.

## FAQ

### I want to display values in Woo iDoklad by Vladislav Musílek (Toret)

Go to `Toret plugins -> Woo iDoklad` and scroll to `Přiřazení polí pro IČ a DIČ`
and fill following values:
 IČ: `_billing_ic` DIČ: `_billing_dic` SK DIČ: `_billing_dic_dph`

### I want to style ARES verified fields

U can use css selectors `.kbnt-validating`, `.kbnt-ok`, and `.kbnt-wrong` for example:
.
kbnt-wrong input { color: #e2401c; } .kbnt-ok input { color: #0f834d; } .kbnt-validating
input{ color: #3d9cd2; }

### I want to display fields in the same row, one besides other (half width)

You can use this snippet to modify the classes of outputed fileds, just add them
to your functions.php

    ```
    add_filter( 'woolab_icdic_class_billing_ic', 'my_theme_class_billing_ic', 10, 1 );
    function my_theme_class_billing_ic ( $class ) {
        return array('form-row-first');
    }

    add_filter( 'woolab_icdic_class_billing_dic', 'my_theme_class_billing_dic', 10, 1 );
    function my_theme_class_billing_dic ( $class ) {
        return array('form-row-last');
    }
    ```

### I want to update customers meta when I change IČO or DIČ value within order edit.

You can use this snippet to update customers data when you edit an order, just add
them to your functions.php

    ```
    add_filter( 'woolab_icdic_update_user_meta', '__return_true' );
    ```

### How can I report security bugs?

You can report security bugs through the Patchstack Vulnerability Disclosure Program.
The Patchstack team help validate, triage and handle any security vulnerabilities.
[Report a security vulnerability.](https://patchstack.com/database/vdp/woolab-ic-dic)

### I found a bug. Where should I post it?

I personally prefer GitHub, to keep things straight. The plugin code is here: [GitHub](https://github.com/vyskoczilova/kybernaut-ic-dic)

But you may use the WordPress Forum as well.

### I found a bug and fixed it. How can I contribute?

Either post it on [GitHub](https://github.com/vyskoczilova/kybernaut-ic-dic) or—
if you are working on a cloned repository—send me a pull request.

## Reviews

![](https://secure.gravatar.com/avatar/ab797ad30f72db468e49b7aa3d9fe70e5602a8ef6f021e273c19d2a4fb2d12ee?
s=60&d=retro&r=g)

### 󠀁[Skvělý plugin](https://wordpress.org/support/topic/skvely-plugin-15/)󠁿

 [Jan](https://profiles.wordpress.org/janozauska/) Июнь 4, 2025 1 reply

Konečně funkční plugin, který taky doplňuje údaje a podpora zvedá telefon 🙂 Děkuji,
hezká práce

![](https://secure.gravatar.com/avatar/4e05c63fc0efd15731b1cbb9e35a7ce95dba7a4b20a3e6cae69dcc01c441e257?
s=60&d=retro&r=g)

### 󠀁[minimal and works](https://wordpress.org/support/topic/minimal-and-works/)󠁿

 [NEONUS, s.r.o.](https://profiles.wordpress.org/shamotj/) Май 15, 2025

Plugin works as expected and support is great. Code is clean and easy to understand.

![](https://secure.gravatar.com/avatar/0023de1601cad4698cfcbe10cd8d1882765424dadbdfcf80786876ef3dca9f2b?
s=60&d=retro&r=g)

### 󠀁[Výborny plugin a výborná podpora](https://wordpress.org/support/topic/vyborny-plugin-a-vyborna-podpora/)󠁿

 [michalpisklak](https://profiles.wordpress.org/michalpisklak/) Январь 31, 2025

Plugin funguje bezchybne. Ďakujeme aj za profesionálnu pomoc pri implementácii pluginu
na našu stránku!

![](https://secure.gravatar.com/avatar/a4ccc5f827490f3988b20252e1b3c9dd13b8e247548ce3af469ada3ba57ae56c?
s=60&d=retro&r=g)

### 󠀁[Vynikající plugin, vynikající support](https://wordpress.org/support/topic/vynikajici-plugin-vynikajici-support/)󠁿

 [Vladimir](https://profiles.wordpress.org/vladav/) Ноябрь 21, 2024

Skvělý plugin, skvělá podpora. Díky!

![](https://secure.gravatar.com/avatar/99d50107486a73898140ef6556d9666257ae7e4b63b8efdaf4f65c9b8c46b394?
s=60&d=retro&r=g)

### 󠀁[Vynikajúca podpora, super funkčnosť](https://wordpress.org/support/topic/vynikajuca-podpora-super-funkcnost/)󠁿

 [neonus](https://profiles.wordpress.org/neonus/) Ноябрь 15, 2024

Vynikajúca podpora, super funkčnosť na eshope a pomoc pre fakturáciu

![](https://secure.gravatar.com/avatar/2e5a2fd3c8eef89a14b6456e3154dabdd635eb19ff700b5326aae93fac7d44fa?
s=60&d=retro&r=g)

### 󠀁[Výborný plugin, skvelá podpora](https://wordpress.org/support/topic/vyborny-plugin-skvela-podpora/)󠁿

 [janino](https://profiles.wordpress.org/janino/) Август 2, 2024 1 reply

Posledná (nová) verzia WooCommerce Checkout blocks sa nemá s týmto pluginom rada.
Doteraz mi pri pár cvičných inštaláciách plugin fungoval bez problémov a zrazu nechodí.
Napísal som pani autorke, do 24 hodín som mal odpoveď – naozaj je potrebné stránku
pokladne Checkout vytvoriť pomocou starého shortkódu [woocommerce_checkout] …a potom
to funguje s témou Sydney perfektne.Vďaka za čas, ktorý pluginu venujete, pani Vyskočilová.
Sponzorské posielam!

 [ Read all 38 reviews ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/)

## Contributors & Developers

“Kybernaut IČO DIČ” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Karolina Vyskocilova ](https://profiles.wordpress.org/vyskoczilova/)

“Kybernaut IČO DIČ” has been translated into 2 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/woolab-ic-dic/contributors)
for their contributions.

[Translate “Kybernaut IČO DIČ” into your language.](https://translate.wordpress.org/projects/wp-plugins/woolab-ic-dic)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/woolab-ic-dic/), check
out the [SVN repository](https://plugins.svn.wordpress.org/woolab-ic-dic/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/woolab-ic-dic/) 
by [RSS](https://plugins.trac.wordpress.org/log/woolab-ic-dic/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.10.5 (2026-03-25)

 * Feature: Added a setting to disable the DIČ / IČ DPH match validation for Slovakia.
   Useful for non-profit organizations where IČ DPH does not match SK” + DIČ. Go
   to WooCommerce > Settings > General > Kybernaut IČO DIČ options.

#### 1.10.4 (2026-03-19)

 * Fix: VAT exemption not applied when Buying as a company” toggle is disabled. 
   When the toggle was off (fields always visible), the VAT exempt check silently
   failed because it required a non-existent checkbox to be checked.

#### 1.10.3 (2026-03-18)

 * Fix: Trying to access array offset on null” error on checkout when `shipping_country`
   or `ship_to_different_address` POST fields are not set (e.g. when shipping to
   billing address).
 * Fix: Added missing `isset()` checks in VAT exempt validation for parsed POST 
   data.

#### 1.10.2 (2025-11-28)

 * Fix: Don’t autofill DIC (Tax ID) for companies with terminated VAT registration(`
   ZANIKLY`). The plugin now checks VAT registration status from ARES and only autofills
   DIC when the status is `AKTIVNI` (active). See [support forum](https://wordpress.org/support/topic/dic-v-pripade-zanikle-registrace-k-dph/).

#### 1.10.1 (2025-05-13)

 * Added a new filter `woolab_icdic_enable_dic_dicdph_match_check` to disable the
   DIČ and IČ DPH match validation. For more details, see the [support thread](https://wordpress.org/support/topic/ic-dph-validacia/#post-18440969).

#### 1.10.0 (2025-04-24)

 * Performance improvement: function donetyping is replaced by debounce function
   by [@morvy](https://github.com/morvy), [#74](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/74)
   fixing issue [#73](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/73)
 * Fix: Shipping country and VAT country prefix must match (paid by a supporter)(
   before only billing & VAT number matched).
 * Feature: Add basic logger.

#### 1.9.1 (2024-11-14)

 * Fix: Greek VAT number validation – VAT country prefix (EL) doesn’t match WooCommerce
   coutry code (GR).

#### 1.9.0 (2024-06-28)

 * Feature: New checkbox Ignore when ARES or VIES check fails for technical reasons”
   in plugin settings. If this option is enabled and validation of business ID or
   VAT number fails for technical reason (not because it is invalid), an order is
   placed. For orders at which validation fails, there is an alert at admin edit
   screen and in admin e-mail. Big thanks to [@PavelVybiral](https://github.com/PavelVybiral)
   [#72](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/72)

#### 1.8.2 (2024-01-09)

 * Feature: added support for [WooCommerce PDF Invoices and Packing Slips for WooCommerce](https://wordpress.org/plugins/pdf-invoices-and-packing-slips-for-woocommerce/)
   by Acowebs (sponsored by [tuningmotocyklov.sk](https://www.tuningmotocyklov.sk))
 * Fixed compatibility with Fluid Checkout (using the JS they provided me)

#### 1.8.1 (2024-01-05)

 * Fix: Bump minimum PHP compatibility to 7.3 (will be increased soon to 8.0).

#### 1.8.0 (2024-01-05)

 * Fix: VAT exempt checkbox default to off.
 * Fix: Work with new ARES API (the old in previous versions has been discontinued
   by the end of 2023). For initial solution and pointing to the thanks to [@lukas-tomoszek](https://github.com/lukas-tomoszek).
 * Feature: Prefix dependencies to avoid conflicts (using [wpify/scoper](https://packagist.org/packages/wpify/scoper))
 * Add test validating Ares REST API check and processing.

#### 1.7.5 (2023-12-19)

 * Fix: Accidentally broken toggle switch in 1.7.4.
 * Declare incompatibility with checkout blocks.

#### 1.7.4 (2023-11-20)

 * Fix: Additional check – billing country and VAT country prefix must match for
   SK IC DPH.
 * Feature: Added compatibility with [Fluid Checkout for WooCommerce – Lite](https://wordpress.org/plugins/fluid-checkout/).
 * Feature: Added a filter `woolab_icdic_check_billing_country_and_dic` allowing
   to disable the feature introduced in 1.7.3.

#### 1.7.3 (2023-10-08)

 * Feature: Localize address format for all EU countries.
 * Feature: Additional check – billing country and VAT country prefix must match(
   paid by a supporter).

#### 1.7.2 (2023-08-02)

 * Fix: non HPOS WooCommerce edit order – load IC DIC values [#60](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/60)
 * Fix: ICO – load the city district (NCO) if the street (NO) is not filled in (
   case when the street = city name) [#62](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/62)
 * Several code updates and cleanup [#61](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/61)

#### 1.7.1 (2023-07-26)

 * Fix: Fatal error while updating manually order status [#59](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/59)

#### 1.7.0 (2023-07-25)

 * Feature: HPOS support – together with [@morvy](https://github.com/morvy), [#55](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/55)
 * Feature: VAT extempt – thanks to [@morvy](https://github.com/morvy), [#48](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/48)
 * Feature: Math validation for Slovak IC DPH – thanks to [@morvy](https://github.com/morvy),
   [#56](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/56)
 * Fix: Checked Buying as a company” while any of Company related fields is filled–
   thanks to [@morvy](https://github.com/morvy), [#48](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/48)
 * Fix: Validation of CZ DIC with different length than 10 numbers – thanks to [@morvy](https://github.com/morvy),
   [#56](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/56)

#### 1.6.7 (2022-01-12)

 * Fix: Checkbox buy as a company – data are sent even when unchecked – thanks to
   [@morvy](https://github.com/morvy)

#### 1.6.6 (2021-11-05)

 * Fix: jQuery 3.x compatibility [#41](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/41)–
   thanks to [@morvy](https://github.com/morvy)
 * Fix: Notice: Undefined variable: dic [#43](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/43)–
   thanks to [@morvy](https://github.com/morvy)

#### 1.6.5 (2021-10-01)

 * Fix: VAT label CSS bug [#40](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/40)–
   thanks to [@morvy](https://github.com/morvy)

#### 1.6.4 (2021-04-05)

 * Fix: prefix toggle CSS class.
 * Fix: call an old function in SK DIČ validation.
 * Improve: remove duplicate class on IČ DPH.
 * Improve: validate ARES only when CZ selected (when the country is re-selected
   again).
 * Load toggle CSS only when used.

#### 1.6.3 (2021-02-24)

 * Feature: Add compatibility with PHP 8

#### 1.6.2 (2021-02-24)

 * Fix: VAT Validation error.

#### 1.6.1 (2021-02-24)

 * Bump the version after SVN issues with vendor” file

#### 1.6.0 (2021-02-24)

 * Fix: Add correct classes on checkbox input for Buy as Company”
 * Update dependencies: VAT composer library to 2.0.5
 * Bump minimum requirements to 7.1 (due to Composer dependency)

#### 1.5.4 (2020-12-02)

 * Fix: Don’t validate without billing country [#27](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/27)–
   thanks to [@morvy](https://github.com/morvy)

#### 1.5.3 (2020-11-09)

 * Compatibility with [WooCommerce SuperFaktura](https://wordpress.org/plugins/woocommerce-superfaktura/)
 * Compatibility [Kybernaut Mailstep](https://kybernaut.cz/pluginy/kybernaut-mailstep/)

#### 1.5.2 (2020-10-13)

 * Fix wrong assets path.
 * Use more general CSS selectors for better compatibility.

#### 1.5.1 (2020-09-17)

 * Fix issues with quotes – [#25](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/25)
 * Add custom filter for disabling required DIC when ICO filled for SK `add_filter('
   woolab_icdic_sk_required_ic_and_dic', '__return_false' );` – [#26](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/26)

#### 1.5.0 (2020-07-20)

 * Fix: Slovak DIC validation fix, [#22](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/22)–
   thanks to [@morvy](https://github.com/morvy)
 * Feature: Show/Hide toggle functionality, [#24](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/24)–
   [@morvy](https://github.com/morvy)
 * Maintenance: Update language files and dependencies

#### 1.4.0 (2019-09-05)

 * Fix: Strip spaces from ICO, DIC, DIC DPH fields ([#8](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/8))
 * Fix: Validation of Slovak DIČ in Vies ([#9](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/9))
 * Fix: Trigger update_checkout JS when address loaded
 * Performance: Don’t validate IČO in ARES when the value has not been changed, 
   called after ‘donetyping’
 * Maintenance: Update node_modules

#### 1.3.3 (2018-11-18)

 * Compatibility with WC 3.5.1 which has fixed” old ordering of checkout fields 
   [#21763](https://github.com/woocommerce/woocommerce/pull/21763)

#### 1.3.2 (2018-08-14)

 * Fix: Use number for address in ARES when no correct land registry and hous number
   are not filled ([@pryx](https://github.com/vyskoczilova/kybernaut-ic-dic/pull/6))

#### 1.3.1 (2018-06-03)

 * Fix: Show IČ DPH” on Manually add new order” screen when Slovakia” selected
 * Fix: Correct validation IČ DPH” (with SK prefix) and DIČ” (without SK prefix)
 * Fix: Remove the WC nonce check (already checked in WC itself)
 * Fix: Problem with loading plugin options
 * Added How to” for Woo iDoklad to readme.txt
 * Update .pot source file.

#### 1.3.0 (2018-02-21)

 * Fix: Display VAT reg. no.” field in Order Billing-edit.
 * Fix: Compatibility with WooCommerce Sequential Order Numbers ([#3](https://github.com/vyskoczilova/kybernaut-ic-dic/issues/3))
 * Performance: CSS in admin.
 * Feature: Validation for Czech Business ID (via ARES)
 * Feature: Autofill for fields such as Company, VAT number, Address, City, and 
   Postcode based on Czech Business ID (via ARES)
 * Feature: Validation of VAT (via [VIES](https://github.com/dannyvankooten/vat.php))
 * Added: Plugin settings to `WooCommerce->Settings->General`
 * Fields moved after company” field.

#### 1.2.0 (2018-02-08)

 * Fixed: Editing Business ID and VAT values within order in admin backend
 * Feature: Texts in plugin only in English (Czech as a translation)
 * Feature: Added `woolab_icdic_class_{field_name}` filters to customize class of
   added billing input fields
 * Feature: Added `woolab_icdic_update_user_meta` filter to enable updating user
   meta on order details edit
 * Added: Links to GitHub and Write a review to plugins page.
 * Added: Basic SK support (based on this [article](https://podnikam.webnoviny.sk/ico-dic-ic-dph-co-znamenaju-tieto-skratky-a-kde-ich-hladat/))

#### 1.1.0 (2017-04-05)

 * Fix: Order properties should not be accessed directly.” Added support for WooCommerce
   3.0.

#### 1.0.3 (2017-02-1)

 * Fix: display fields in My Account frontend page.
 * Add: support for WooCommerce PDF Invoices & Packing Slips.

#### 1.0.2.1 (2016-12-15)

 * Feature: Created the GIT repository

#### 1.0.2 (2016-09-05)

 * Fix: the term IČ” to IČO”.

#### 1.0.1 (2016-07-18)

 * Feature: Checks billing country and validates IC & DIC if is set to CZ

#### 1.0.0 (2016-07-16)

 * Initial release

## Meta

 *  Version **1.10.5**
 *  Last updated **2 months ago**
 *  Active installations **3,000+**
 *  WordPress version ** 4.6 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.3 or higher **
 *  Languages
 * [Czech](https://cs.wordpress.org/plugins/woolab-ic-dic/), [English (US)](https://wordpress.org/plugins/woolab-ic-dic/),
   and [Slovak](https://sk.wordpress.org/plugins/woolab-ic-dic/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/woolab-ic-dic)
 * Tags
 * [DIČ](https://os.wordpress.org/plugins/tags/dic/)[ico](https://os.wordpress.org/plugins/tags/ico/)
   [IČ](https://os.wordpress.org/plugins/tags/ic/)[IČ DPH](https://os.wordpress.org/plugins/tags/ic-dph/)
   [VAT number](https://os.wordpress.org/plugins/tags/vat-number/)
 *  [Advanced View](https://os.wordpress.org/plugins/woolab-ic-dic/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  38 5-star reviews     ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/woolab-ic-dic/reviews/)

## Contributors

 *   [ Karolina Vyskocilova ](https://profiles.wordpress.org/vyskoczilova/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/woolab-ic-dic/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.me/KarolinaVyskocilova)