EU Cookie Policy Pro + Auto Cookie Detection (SW6) + Load scripts only after approval + Google Consent Mode V2 support

1601 downloads
Improves the EU Cookie Policy compliant use of your webshop. Non-functional cookies of the shop domain are not permitted without approval and automatically recognized.
Monthly
€9.90* / month
Cancelable monthly
Annual
16.67% discount
€8.25 / month
€118.80* €99.00* / year

Technical Information

Category Special features
Created At November 6, 2019
Last Updated July 19, 2026
Languages de_DE, en_GB
Keywords cookie, Consent, cookie consent, Cookie banner, Consent manager
Technical name AcrisCookieConsent

Highlights

  • Automatic cookie detection
  • Load scripts only after consent
  • Google Consent Mode V2 support
  • Edit cookie information / functions / layout
  • Cookie settings / group

Features

  • Google Consent Mode V2 support as well as GA4 and Google Ads
  • Scripts can now only be loaded after approval (create new cookie, insert script, determine script code position (head, body)).
  • Selection of the cookies in the storefront
  • Change between modal window and classic cookie notice
  • Cookies are only allowed after acceptance in the shop
  • Automatic cookie detection per language- or subshop
  • Cookies backend administration
  • Optional in-app purchase: Cookie statistics – analysing cookie consents in the admin panel

Supports Google Consent Mode V2 (see below for documentation and demo container)

Recommended by the IT-Recht Kanzlei Munich: https://www.it-recht-kanzlei.de/rabatt-mandanten-eucookierichtliniepro-shopware.html


Improves the EU Cookie Policy compliant use of your webshop.


Since Shopware 6 can not prevent cookies from external scripts (eg Google Analytics) and thus tracking is also possible without accepting, this plugin is nevertheless urgently needed.


Features

  • Non-functional cookies of the shop domain are only allowed in the shop as soon as the user accepts the cookie hint.
  • The cookie hint allows the user to activate / deactivate single cookies or whole cookie groups individually.
  • Cookies unknown to the plugin will be recognized automatically. These can then be titled by the shop owner and activated for selection in the store. Publicly known cookies (such as Google Analytics, Facebook Pixel, Amazon Pay, Livezilla, Cloudflare, Emarsys and many more) are automatically added to the cookie hint.
  • Cookies are automatically assigned to the recognized sales channel and only displayed there in the notice.
  • In the plugin settings you can switch between two layout options (Classic cookie note and modal window - since version 1.1.0).
  • Shop customers can adjust cookie settings after accepting (to set up the feature, see the installation instructions).
  • Buttons "Accept only functional cookies" and "Accept all cookies" can be to the note by plugin configuration if required.
  • from version 5.0: Scripts can now be loaded after approval - to do this, create a new "cookie" and fill in the corresponding fields.
  • New from version 5.3: Google Consent Mode V2 support


Technical functioning

The plugin recognizes all cookies set via HTTP or via Javascript from an internal (e.g., Shopware CSRF token) or externally loaded script (e.g., Google Analytics). All cookies that are not set for the shop domain and set by an external loaded resource (eg iFrame integration) for an external domain (eg www.paypal.com) can not be recognized by the plugin due to the same origin policy (browser security guidline) and can not be prevented. As an example, this concerns payment bindings loaded via iFrames (e.g., Paypal Express Shopware plugin).


Please note

The Plugin manufacturer assumes no liability for the complete DSGVO conformity and no claim to legal certainty can be asserted. In particular, it should be noted that each case is to be considered separately and does not replace individual legal advice.


Information about implementing Google Tag Manager

https://www.acris.at/media/77/32/3c/1709126654/SW6_Doku_Cookie-Richtlinie-Pro_Tag-Manager_V61_EN.pdf


Container template for the import into the Google Tag Manager (please unpack ZIP archive)

https://www.acris.at/media/80/03/a3/1773766038/GTM_Container_Vorlage_bitte_entpacken_v9.zip


In-app purchase: Cookie Statistics

The optional in-app purchase ‘Cookie Statistics’ is available within the plugin for analysing cookie consents.

The Cookie Statistics feature allows shop owners to track, via the admin panel, how visitors interact with the cookie notice. The selected consent types are recorded statistically and clearly displayed in the backend.

Features of the in-app purchase

  1. Analysis of cookie consent in the admin panel
  2. Displays whether visitors have accepted all cookies, no cookies, only functional cookies, or selected cookies
  3. Customisable analysis period for flexible reporting
  4. Automatic deletion of older statistics entries after a configurable period


Scripte, Bilder, iFrames und Links einbinden (im HTML Code)  (wenn es nicht möglich ist, Scripte wie vorgesehen im Cookie Manager einzubinden)

  • Zuerst ein neues Cookie anlegen und dann kann die CookieID entsprechend verwendet werden:

    LEIDER IST DER BEISPIELCODE HIER NICHT SICHTBAR - bei Bedarf kann der Beispielcode via Supportanfrage bei uns angefragt werden !

    • Image

      Vorher:
      <img class="img-fluid" src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png">

      Nachher:

      <img class="img-fluid" data-src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png" data-acriscookie="true" data-acriscookieid="AcrisTestIDd" src="">
    • Iframe

      Vorher:

      <iframe src="https://www.youtube.com/embed/v2AC41dglnM" width="560" height="315"></iframe>

      Nachher:

      <iframe data-src="https://www.youtube.com/embed/v2AC41dglnM" data-acriscookie="true" data-acriscookieid="AcrisTestID" src="" width="560" height="315"></iframe>
    • Skript direkte Einbindung

      Vorher:

      <script type="text/javascript"> console.log("test cms"); </script>

      Nachher:

      <script type="text/plain" data-acriscookie="true" data-acriscookieid="AcrisTestID"> console.log("test cms"); </script>
    • Skript Einbindung über src

      Vorher:

      <script type="text/javascript" src="https://www.w3schools.com/js/myScript.js" />

      Nachher:

      <script type="text/plain" data-acriscookie="true" data-acriscookieid="AcrisTestID" src="https://www.w3schools.com/js/myScript.js" />
    • Link

      Vorher:

      <link href="https://fonts.googleapis.com/css?family=Kanit:400" rel="stylesheet" type="text/css" href="">

      Nachher:

      <link data-href="https://fonts.googleapis.com/css?family=Kanit:400" data-acriscookie="true" data-acriscookieid="AcrisTestID" rel="stylesheet" type="text/css" href="">

    Für "img" oder "iframe" gibt es auch die Möglichkeit einen alternativen Text anzuzeigen.
    • Es muss ein Element mit der Klasse "acris-cookie-info", direkt danach eingefügt werden. Bespiel.:
      <img class="img-fluid" data-src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png" data-acriscookie="true" data-acriscookieid="test-id" src=""> <div class="acris-cookie-info">Externe Inhalte werden nach der Bestätigung des Datenschutzhinweises geladen.</div>
    • Oder ein Info Text - Beispiel.:

      <img class="img-fluid" data-src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png" data-acriscookie="true" data-acriscookieid="test-id" src=""> <div class="acris-cookie-info alert alert-info" role="alert"> <div class="alert-content-container"> <div class="alert-content">Externe Inhalte werden nach der Bestätigung des Datenschutzhinweises geladen.</div> </div> </div>
    • Mit dem ACRIS CMS Modul und dem HTML-Element lässt sich dann auch noch schön Twig Code verwenden. Beispiel:

      <img class="img-fluid" data-src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png" data-acriscookie="true" data-acriscookieid="test-id" src=""> <div class="acris-cookie-info"> {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with { type: "info", content: "Externe Inhalte werden nach der Bestätigung des Datenschutzhinweises geladen." } %} </div>
  • Integrating scripts via other plugins / apps
    1. A cookie must first be created in the admin (Settings > Extensions > EU Cookie Policy Pro > Cookies). The cookie ID can be: "my_cookie". The cookie must have a default value entered. In our example, this is the value 1.
    2. The following script can then be inserted in the other extension:
    import CookieStorage from 'src/helper/storage/cookie-storage.helper';
    init();
    function init() {
     const cookie = CookieStorage.getItem('my_cookie');
     if(cookie === '1') {
     loadMyScript();
     }
    }

    function loadMyScript() {
     const script = document.createElement('script');
     script.async = true;
     script.src = 'https://www.my-script.com/script.js';
     document.body.appendChild(script);
    }



Complementary Extensions for Tracking & Consent

The following plugin extend tracking and consent functionality in Shopware and can be used in combination.

Google Tag Manager – GA4, Google Ads & Server-Side Tracking
Enables centralized integration and management of tracking services and supports modern tracking methods.

Installation

The installation is done via the plugin manager.

If shop pages are called up after the activation of the plugin in the storefront, the automatic cookie recognition becomes active and yet unknown cookies become visible in the cookie backend settings. New cookies are assigned to one or more sales channels and have to be recognized in each one.

Important: Set the Shopware setting for the cookie mode to "Show only hint" for avoiding future problems.


Change cookie settings after accepting

In order for shop customers to be able to subsequently change the cookie notice, javascript: window.openCookieConsentManager(); must be entered at a shop page at "Link address". When clicking on the shop page in the footer, the cookie notice appears again

Videos

Frequently Asked Questions

No. Non-functional cookies do not become active until the user clicks "Accept cookies". Before cookies are prevented by the plugin in the shop according to the EU Cookie Policy.

The following cookies are set by the plugin itself:

* acris_cookie_acc (cookie of the plugin)
* cookie-permission (Shopware Standard Cookie)
* acris_cookie_landing_page (Saves the landing page for later use with tracking tools)
* acris_cookie_referrer (Saves the referrer for later use with tracking tools)
* acris_cookie_first_activated (Saves which cookies have already been accepted by the user for the first time)

The button "Accept cookies" cannot be hidden for reasons of functionality. This button ensures that the user(s)* accept(s) the cookies selected in the privacy settings. If the button were to be hidden, he/she would no longer be able to make a selection and this function must be available. Alternatively the button Text in the text module administration can be renamed to "Accept selected cookies" (text module acrisCookieConsent.acceptOnlyFunctionalButton).

Basically, we recommend that you always first take a closer look at the plug-ins you are using. These often set cookies, which can then be easily titled. Furthermore, Google can also help with publicly known cookies. If the cookies cannot be identified, we recommend naming them in case of doubt, assigning them to a group but leaving them inactive. Cookies can also be set by bots or by browsers, they do not necessarily have to come from the system itself.

The cookies found in the shop can come from the following sources:

* Third party plugin
* Embedded script on the page directly or via TagManager
* An unwanted bot sets a cookie. 
So please check your extensions and included scripts in the shop first. If you can't assign the cookies, I would recommend you either delete them and check if they reappear, or name them, assign them to a group and leave them inactive in case of doubt. So they will not be reported again, will not be shown in the cookie hint and will be blocked in the shop.

The automatic cookie recognition can be deactivated in the plugin settings. The following applies: As long as no new trackings, scripts, plugins, etc. are integrated, no relevant new cookies will appear with high probability. When integrating a new service, we recommend to activate the automatic cookie recognition for a short time and test the shop for new cookies. To do so, simply test various shop functions in the storefront.

Yes, adjustments must be made in the Google Tag Manager so that the data layer variables sent are read correctly. (see documentation in the plugin description)

Version Date Compatibility Changelog
10.2.0 13 July 2026 >=6.7.3.0 <6.8.0.0
  • - Added a "More settings" menu item to the admin navigation, linking directly to the plugin configuration.
10.1.0 13 July 2026 >=6.7.3.0 <6.8.0.0
  • - Added config option to only allow cookie consent on group level, hiding the individual cookie switches in the storefront.
10.0.11 1 June 2026 >=6.7.3.0 <6.8.0.0
  • - Optimized reCaptcha v3 support.
10.0.10 1 June 2026 >=6.7.3.0 <6.8.0.0
  • - Improved traffic origin detection: UTM parameters, Ads click IDs and referrer are now stored server-side at the first page visit to improve GA4 attribution and reduce unassigned traffic.
10.0.9 27 May 2026 >=6.7.3.0 <6.8.0.0
  • - Improved cookie cache handling to reduce unnecessary requests and improve performance.
10.0.8 7 May 2026 >=6.7.3.0 <6.8.0.0
  • - Fixed a compatibility issue where a third-party plugin implementing `CookieProviderInterface` with an invalid cookie entry format (string instead of array, or missing `cookie` key) caused a fatal error in the Shopware Core `CookieProvider::convertLegacyCookies()` method, breaking the storefront. The plugin now catches this error gracefully, logs a warning, and continues loading without crashing the frontend.
10.0.7 27 April 2026 >=6.7.3.0 <6.8.0.0
  • - Fixed a GDPR compliance issue where the cookies `acris_cookie_landing_page` and `acris_cookie_referrer` were set immediately on page load without user consent. These cookies are registered as consent-required (non-default) in the plugin configuration and feed data into GTM/Matomo, so they must only be set after the user has given consent. The `saveReferrerAndLandingPage()` method now checks for prior consent before writing any cookies. Additionally, the method is now also called after the user accepts cookies (via any of the three consent buttons), so landing page and referrer data is still captured correctly when consent is given after page load.
10.0.6 22 April 2026 >=6.7.3.0 <6.8.0.0
  • - Fixed an issue where the original external referrer (e.g. from Google) was lost after the cookie consent page reload. The plugin now saves the external referrer to sessionStorage before reloading and exposes it as `window.acrisOriginalReferrer` on the next page load, so tracking scripts (GTM, GA4, etc.) can use it for correct attribution.
10.0.5 15 April 2026 >=6.7.3.0 <6.8.0.0
  • - Improved Google consent mode handling.
10.0.4 25 March 2026 >=6.7.3.0 <6.8.0.0
  • - Fixed an issue where a PHP session was started for every visitor, which prevented the Shopware HTTP cache from working correctly. The plugin now only accesses the session if one already exists, ensuring proper HTTP caching for anonymous visitors and search engine crawlers.
10.0.3 16 March 2026 >=6.7.3.0 <6.8.0.0
  • - Performance fix: The automatic cookie detection (registered cookies from Shopware plugins) is now executed only once per user session instead of on every HTTP request. This prevents database connection spikes and shop timeouts under concurrent load in production mode.
  • - Performance fix: Added in-memory cache for loading all cookies within the same request to avoid redundant database queries.
10.0.2 16 March 2026 >=6.7.3.0 <6.8.0.0
  • - Fixed an issue where the wishlist cookie was automatically accepted upon clicking the wishlist button. Now, the cookie consent manager opens with the wishlist pre-selected, requiring manual confirmation by the customer.
10.0.1 26 February 2026 >=6.7.3.0 <6.8.0.0
  • - Code optimizations for better compatibility with Shopware 6.7.
10.0.0 25 February 2026 >=6.7.3.0 <6.8.0.0
  • - Improved compatibility with Shopware 6.7 wishlist. The cookie consent modal now opens automatically when the wishlist is used and the required cookie has not yet been accepted.
9.5.8 23 February 2026 >=6.7.0.0 <6.8.0.0
  • - Fixed the issue with new setting of external links from Shopware at categories.
9.5.7 18 February 2026 >=6.7.0.0 <6.8.0.0
  • - Fix possible infinite loop in administration cookie detail page.
  • - Fixes an issue in the admin on the cookie detail page when no content is available for Google Consent Mode.
9.5.6 16 February 2026 >=6.7.0.0 <6.8.0.0
  • - Performance optimization for checking when inserting new cookie groups.
9.5.5 9 February 2026 >=6.7.0.0 <6.8.0.0
  • - Cookie banner text styling optimizations.
9.5.4 9 February 2026 >=6.7.0.0 <6.8.0.0
  • - Improved compatibility with the Shopware YouTube/Vimeo element.
9.5.3 16 December 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes an issue where cookies were always set to the value 1, even when no default value was configured.
9.5.2 16 December 2025 >=6.7.0.0 <6.8.0.0
  • - Video reloading has been improved.
9.5.1 9 December 2025 >=6.7.0.0 <6.8.0.0
  • - Improved compatibility with the Shopware YouTube element.
9.5.0 29 September 2025 >=6.7.0.0 <6.8.0.0
  • - Fixed issue where "Cookie settings" in the footer does not work in Shopware 6.7.
  • - Added a new switch at category to automatically include JavaScript and restore functionality.
9.4.2 18 September 2025 >=6.7.0.0 <6.8.0.0
  • - Fixed double loading of JavaScript in cookie settings.
9.4.1 17 September 2025 >=6.7.0.0 <6.8.0.0
  • - The loading of Javascript in the cookie settings has been optimized.
9.4.0 15 September 2025 >=6.7.0.0 <6.8.0.0
  • - The displayed text for each CMS page from the plugin settings can now be configured.
9.3.0 27 August 2025 >=6.7.0.0 <6.8.0.0
  • - Feature: The expiration can now be configured for each cookie.
9.2.6 21 August 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes a potential issue where the cookie modal window was displayed again when clicking the browser back button if only functional cookies were accepted.
9.2.5 30 July 2025 >=6.7.0.0 <6.8.0.0
  • - Fixed icon compatibility with other plugins.
9.2.4 30 July 2025 >=6.7.0.0 <6.8.0.0
  • - Extends the list of pre-known Matomo cookies.
9.2.3 11 July 2025 >=6.7.0.0 <6.8.0.0
  • - Improved plugin compatibility with Shopware 6.7.
9.2.2 3 July 2025 >=6.7.0.0 <6.8.0.0
  • - Improved plugin compatibility with Shopware 6.7.
9.2.1 30 June 2025 >=6.7.0.0 <6.8.0.0
  • - Improved accessibility by adding missing ARIA attributes.
9.2.0 13 June 2025 >=6.7.0.0 <6.8.0.0
  • - Adds keyboard navigation support to the cookie modal for better accessibility.
9.1.2 15 May 2025 >=6.7.0.0 <6.8.0.0
  • - Correction of possible warnings in log files.
9.1.1 15 May 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes a potential issue where content was displayed twice when using "data-acriscookieid" in JavaScript integrations.
9.1.0 9 May 2025 >=6.7.0.0 <6.8.0.0
  • - Default values of cookies can now also be adjusted in the admin. This is useful when custom cookies are defined, which should then be handled in the storefront via JavaScript.
  • - Change of default values in the plugin settings for new installations.
  • - Change of the button text "Accept cookies" to "Accept selected cookies".
9.0.0 8 May 2025 >=6.7.0.0 <6.8.0.0
  • - Compatibility with Shopware 6.7.
  • - Support for the following languages: de-DE, en-GB, nl-NL, fr-FR, es-ES, fi-FI, nn-NO, sv-SE, cs-CZ, pt-PT, tr-TR, da-DK, it-IT, pl-PL, bs-BA
8.4.11 1 June 2026 >=6.6.0.0 <6.7.0.0
  • - Improved traffic origin detection: UTM parameters, Ads click IDs and referrer are now stored server-side at the first page visit to improve GA4 attribution and reduce unassigned traffic.
8.4.10 15 April 2026 >=6.6.0.0 <6.7.0.0
  • - Improved Google consent mode handling.
8.4.9 13 April 2026 >=6.6.0.0 <6.7.0.0
  • - Performance fix: Cookie detection is now executed only once per session instead of on every HTTP request.
  • - Performance fix: Added in-memory cache for loading all cookies within the same request.
  • - Fixed an issue where a PHP session was started for every visitor, preventing the Shopware HTTP cache from working correctly.
8.4.8 18 February 2026 >=6.6.0.0 <6.7.0.0
  • - Fix possible infinite loop in administration cookie detail page.
  • - Fixes an issue in the admin on the cookie detail page when no content is available for Google Consent Mode.
8.4.7 16 February 2026 >=6.6.0.0 <6.7.0.0
  • - Performance optimization for checking when inserting new cookie groups.
  • - Fixes a possible issue where cookies or cookie groups were inserted twice.
8.4.6 9 February 2026 >=6.6.0.0 <6.7.0.0
  • - Cookie banner text styling optimizations.
8.4.5 9 February 2026 >=6.6.0.0 <6.7.0.0
  • - Improved compatibility with the Shopware YouTube/Vimeo element.
8.4.4 16 December 2025 >=6.6.0.0 <6.7.0.0
  • - Video reloading has been improved.
8.4.3 9 December 2025 >=6.6.0.0 <6.7.0.0
  • - Improved compatibility with the Shopware YouTube element.
8.4.2 18 September 2025 >=6.6.0.0 <6.7.0.0
  • - Fixed double loading of JavaScript in cookie settings.
8.4.1 17 September 2025 >=6.6.0.0 <6.7.0.0
  • - The loading of Javascript in the cookie settings has been optimized.
8.4.0 15 September 2025 >=6.6.0.0 <6.7.0.0
  • - The displayed text for each CMS page from the plugin settings can now be configured.
8.3.0 27 August 2025 >=6.6.0.0 <6.7.0.0
  • - Feature: The expiration can now be configured for each cookie.
8.2.3 21 August 2025 >=6.6.0.0 <6.7.0.0
  • - Fixes a potential issue where the cookie modal window was displayed again when clicking the browser back button if only functional cookies were accepted.
8.2.2 30 July 2025 >=6.6.0.0 <6.7.0.0
  • - Extends the list of pre-known Matomo cookies.
8.2.1 30 June 2025 >=6.6.0.0 <6.7.0.0
  • - Improved accessibility by adding missing ARIA attributes.
8.2.0 13 June 2025 >=6.6.0.0 <6.7.0.0
  • - Adds keyboard navigation support to the cookie modal for better accessibility.
8.1.3 15 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Correction of possible warnings in log files.
8.1.2 15 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Fixes a potential issue where content was displayed twice when using "data-acriscookieid" in JavaScript integrations.
8.1.1 9 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Improved functionality of the default value for cookies when a script is embedded via the admin field through the cookie.
8.1.0 9 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Default values of cookies can now also be adjusted in the admin. This is useful when custom cookies are defined, which should then be handled in the storefront via JavaScript.
8.0.6 5 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Further accessibility optimizations.
8.0.5 5 May 2025 >=6.6.0.0 < 6.7.0.0
  • - Improved compatibility with Stripe payments.
8.0.4 30 April 2025 >=6.6.0.0 < 6.7.0.0
  • - Accessibility optimizations.
8.0.3 15 April 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimization of compatibility with the Shopware standard cookie behavior and other plugins.
  • - Removal of no longer needed CSRF tokens.
8.0.2 24 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Improved admin compatibility with Shopware 6.6.10.*
8.0.1 13 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Change to the specified compatibility with Shopware.
8.0.0 13 March 2025 >=6.6.10.0 < 6.7.0.0
  • - Improves plugin compatibility with Shopware 6.6.10.* versions.
7.0.23 25 February 2025 >=6.6.0.0 <6.7.0.0
  • - Optimization of the cookie group handling in the administration.
7.0.22 21 February 2025 >=6.6.0.0 <6.7.0.0
  • - Changes the cookie for origin information ("acris_cookie_landing_page|acris_cookie_referrer") as a non-standard cookie. This can now be deactivated in the administration.
7.0.21 19 February 2025 >=6.6.0.0 <6.7.0.0
  • - Performance optimizations related to 404 pages.
7.0.20 23 January 2025 >=6.6.0.0 <6.7.0.0
  • - Fixes a potential issue where automatically found cookie groups were created without names and description texts.
7.0.19 10 January 2025 >=6.6.0.0 <6.7.0.0
  • - Correction of possible warnings in log files for newer Shopware versions.
7.0.18 19 November 2024 >=6.6.0.0 <6.7.0.0
  • - Bugfix: Wrong type conversion for the cookie value removed.
7.0.17 19 November 2024 >=6.6.0.0 <6.7.0.0
  • - Optimization of the Shopware standard analytics implementation in connection with the cookie consent.
7.0.16 12 November 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a possible issue where a JavaScript error occurred on product pages when a YouTube video was embedded and after JavaScript was rebuilt in a newer Shopware 6 environment.
7.0.15 25 October 2024 >=6.6.0.0 <6.7.0.0
  • - Bugfix fixed a bug when sales channel is added in admin
7.0.14 20 September 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a problem where default values of cookies in the functional cookie group were no longer set correctly.
7.0.13 19 September 2024 >=6.6.0.0 <6.7.0.0
  • - Optimised SEO indexing of cookie modal.
7.0.12 29 July 2024 >=6.6.0.0 <6.7.0.0
  • - Adds the _gcl_gs cookie to the list of Google Conversion Tracking cookies.
7.0.11 4 July 2024 >=6.6.0.0 <6.7.0.0
  • - Optimisation of the Cleanup Scheduled Task in conjunction with Shopware 6.6.
7.0.10 10 June 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a possible problem when updating to Shopware 6.6.
7.0.9 29 May 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a problem where the session cookie was set twice.
7.0.8 23 May 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a problem where the cookie notice was displayed again on a new visit to the website if the customer had not accepted all cookies.
  • - Optimisation in connection with the Http cache, where the cookie notice was displayed again on certain pages even though the cookies had already been accepted.
7.0.7 14 May 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a problem where default values were no longer set for standard cookies.
7.0.6 25 April 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes an error when triggering the cookie button in the standard cookie hint below
7.0.5 24 April 2024 >=6.6.0.0 <6.7.0.0
  • - Optimization of the plugin configuration.
  • - Optimization storage of the cookie confirmation in the cache.
7.0.4 24 April 2024 >=6.6.0.0 <6.7.0.0
  • - Fixes a possible problem where the cookie notice does not appear on various pages even though the cookie notice has not yet been accepted.
7.0.3 8 April 2024 >=6.6.0.0
  • - Optimization of the cookie script inclusion.
7.0.2 26 March 2024 >=6.6.0.0
  • - Optimize compatibility with other consent managers.
  • - Adds a setting to obtain renewed cookie consent.
7.0.1 15 March 2024 >=6.6.0.0
  • - Shopware 6.6. optimizations.
7.0.0 15 March 2024 >=6.6.0.0
  • - Compatibility with Shopware 6.6.
6.3.21 3 March 2026 >=6.5.1.0 <6.6.0.0
  • - Fixes a possible issue where no cookie banner was displayed on pages even though the cookies had not yet been accepted or rejected.
6.3.20 25 February 2026 >=6.5.1.0 <6.6.0.0
  • - Performance optimization for checking when inserting new cookie groups.
  • - Fixes a possible issue where cookies or cookie groups were inserted twice.
6.3.19 28 July 2025 >=6.5.1.0 <6.6.0.0
  • - Correction of potential PHP warnings.
6.3.18 19 November 2024 >=6.5.1.0 <6.6.0.0
  • - Optimization of the Shopware standard analytics implementation in connection with the cookie consent.
6.3.17 20 September 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes a problem where default values of cookies in the functional cookie group were no longer set correctly.
6.3.16 19 September 2024 >=6.5.1.0 <6.6.0.0
  • - Additional SEO optimisations for cookie modal.
6.3.15 18 September 2024 >=6.5.1.0 <6.6.0.0
  • - Optimised SEO indexing of cookie modal.
6.3.13 10 June 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes a possible problem when updating to Shopware 6.6.
6.3.12 29 May 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes a problem where the session cookie was set twice.
6.3.11 23 May 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes a problem where the cookie notice was displayed again on a new visit to the website if the customer had not accepted all cookies.
  • - Optimisation in connection with the Http cache, where the cookie notice was displayed again on certain pages even though the cookies had already been accepted.
6.3.10 30 April 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes a problem when the Storefront was recompiled
6.3.9 25 April 2024 >=6.5.1.0 <6.6.0.0
  • - Fixes an error when triggering the cookie button in the standard cookie hint below
6.3.8 8 April 2024 >=6.5.1.0
  • - Optimization of the cookie script inclusion.
6.3.7 26 March 2024 >=6.5.1.0
  • - Optimize compatibility with other consent managers.
  • - Adds a setting to obtain renewed cookie consent.
6.3.6 26 February 2024 >=6.5.1.0
  • - Fixes a problem with the initial cookie acceptance.
6.3.5 22 February 2024 >=6.5.1.0
  • - Customisation of the previously known cookies in relation to the chat software Tawk.
6.3.4 20 February 2024 >=6.5.1.0
  • - Adds the Pinterest cookie to the list of cookies already known in advance.
6.3.3 14 February 2024 >=6.5.1.0
  • - Form optimizations
6.3.2 13 February 2024 >=6.5.1.0
  • - Fixes a problem with the accordion
6.3.1 8 February 2024 >=6.5.1.0
  • - Code optimizations
6.3.0 8 February 2024 >=6.5.1.0
  • - Google cookie consent mode v2 has been added
6.2.3 16 January 2024 >=6.5.1.0
  • - Fixes a possible problem where the cookie modal window reappears on the page after accepting cookies.
6.2.2 13 December 2023 >=6.5.1.0
  • - The loading of Javascript in the cookie settings has been optimized.
6.2.1 7 November 2023 >=6.5.1.0
  • - Inserts the data attribute "data-nosnippet" for the cookie hint so that it is not used by crawlers to create snippets.
6.2.0 24 October 2023 >=6.5.1.0
  • - From now on, TWIG code can also be inserted in the script field of cookies.
6.1.9 11 October 2023 >=6.5.1.0
  • - Optimizes adding the allowed attributes for the HTML Sanitizer
6.1.8 11 October 2023 >=6.5.1.0
  • - Optimzed attribute whitelist for html sanitizer therefore the cookie snippets will not get broken after saving in admin
6.1.7 19 September 2023 >=6.5.1.0
  • - Fixes a possible problem when removing set cookies.
6.1.6 28 August 2023 >=6.5.1.0
  • - Fixes a problem where the modal window was no longer closed correctly when accepting cookies.
6.1.5 16 August 2023 >=6.5.1.0
  • - Setting the SameSite attribute for the cookies acris_cookie_first_activated, acris_cookie_landing_page and acris_cookie_referrer.
6.1.4 8 August 2023 >=6.5.1.0
  • - Compatibility with Shopware >= 6.5.1.0 improved
6.1.3 24 July 2023 >=6.5.0.0
  • - Optimised cookie group list page in administration.
6.1.2 24 July 2023 >=6.5.0.0
  • - Restricted deletion of cookies that are default.
6.1.1 21 July 2023 >=6.5.0.0
  • - Improved cookie listing pages performance in administration.
6.1.0 19 July 2023 >=6.5.0.0
  • - Added configuration to show "Accept cookies" button after settings are opened.
6.0.8 12 July 2023 >=6.5.0.0
  • - Fixes a problem where scripts stored with cookies that contain a comment at the beginning were not loaded.
  • - Fixes a problem where scripts stored with cookies were not loaded correctly in translations.
6.0.7 11 July 2023 >=6.5.0.0
  • - Fixes an issue where scripts could no longer be added with a script tag on a cookie since Shopware 6.5.
6.0.6 6 July 2023 >=6.5.0.0
  • - Optimised cookie modal on page loading.
6.0.5 5 July 2023 >=6.5.0.0
  • - Fixed cookie modal closing when we click outside it.
6.0.4 19 June 2023 >=6.5.0.0
  • - The loading of Javascript in the cookie settings has been optimized.
6.0.3 8 May 2023 >=6.5.0.0
  • - Fixes a problem where cookies were still not active after accepting them.
6.0.2 4 May 2023 >=6.5.0.0
  • - Adds the Mollie Payment cookie to the list of cookies already known in advance.
6.0.1 27 April 2023 >=6.5.0.0
  • - Changes the cookie ID of the Google Conversion Tracking.
6.0.0 17 April 2023 >=6.5.0.0
  • - Compatibility with Shopware 6.5.
5.3.13 18 July 2024 >=6.4.13.0 <6.5.0.0
  • - Fixes a possible problem with older Shopware versions.
5.3.12 18 July 2024 >=6.4.11.0 <6.4.13.0
  • - Fixes a problem with Shopware versions below 6.4.13.0.
5.3.11 10 June 2024 >=6.4.11.0 <6.5.0.0
  • - Fixes a possible problem when updating to Shopware 6.6.
5.3.10 29 May 2024 >=6.4.11.0 <6.5.0.0
  • - Fixes a problem where the session cookie was set twice.
5.3.9 23 May 2024 >=6.4.11.0 <6.5.0.0
  • - Fixes a problem where the cookie notice was displayed again on a new visit to the website if the customer had not accepted all cookies.
  • - Optimisation in connection with the Http cache, where the cookie notice was displayed again on certain pages even though the cookies had already been accepted.
5.3.8 8 April 2024 >=6.4.11.0
  • - Optimization of the cookie script inclusion.
5.3.7 26 March 2024 >=6.4.11.0
  • - Optimize compatibility with other consent managers.
  • - Adds a setting to obtain renewed cookie consent.
5.3.6 26 February 2024 >=6.4.11.0
  • - Fixes a problem with the initial cookie acceptance.
5.3.5 23 February 2024 >=6.4.11.0
  • - Fixes a problem that the cookie groups were no longer collapsible.
5.3.4 22 February 2024 >=6.4.11.0
  • - Customisation of the previously known cookies in relation to the chat software Tawk.
  • - Adds the Pinterest cookie to the list of cookies already known in advance.
5.3.3 14 February 2024 >=6.4.11.0
  • - Changelog fixed
5.3.2 14 February 2024 >=6.4.11.0
  • - Formular Optimierungen
5.3.1 8 February 2024 >=6.4.11.0
  • - Code Optimierungen
5.3.0 8 February 2024 >=6.4.11.0
  • - Google cookie consent mode v2 has been added
5.2.2 16 January 2024 >=6.4.11.0
  • - Fixes a possible problem where the cookie modal window reappears on the page after accepting cookies.
5.2.1 13 December 2023 >=6.4.11.0
  • - The loading of Javascript in the cookie settings has been optimized.
5.2.0 19 July 2023 >=6.4.11.0
  • - Added configuration to show "Accept cookies" button after settings are opened.
5.1.8 12 July 2023 >=6.4.11.0
  • - Fixes a problem where scripts stored with cookies that contain a comment at the beginning were not loaded.
  • - Fixes a problem where scripts stored with cookies were not loaded correctly in translations.
5.1.7 19 June 2023 >=6.4.11.0
  • - The loading of Javascript in the cookie settings has been optimized.
5.1.6 8 May 2023 >=6.4.11.0
  • - Fixes a problem where cookies were still not active after accepting them.
5.1.5 4 May 2023 >=6.4.11.0
  • - Adds the Mollie Payment cookie to the list of cookies already known in advance.
5.1.4 27 April 2023 >=6.4.11.0
  • - Changes the cookie ID of the Google Conversion Tracking.
5.1.3 28 March 2023 >=6.4.11.0
  • - Optimisation in connection with AdBlockers.
5.1.2 27 March 2023 >=6.4.11.0
  • - Fixes a possible problem when loading 404 pages.
5.1.1 27 March 2023 >=6.4.11.0
  • - Fixes a problem where the cookie notice was displayed after the browser was reopened.
5.1.0 22 March 2023 >=6.4.11.0
  • - Added plugin setting for cookie title / description layout.
5.0.5 15 March 2023 >=6.4.11.0
  • - Integration of Matomo Tag Manager
5.0.4 15 March 2023 >=6.4.11.0
  • - Fixed problem with setting cookie default values and Http cache
5.0.3 9 February 2023 >=6.4.11.0
  • - Change of the plugin name and the manufacturer links.
5.0.2 8 February 2023 >=6.4.11.0
  • - Improves plugin compatibility
5.0.1 26 January 2023 >=6.4.11.0
  • - Not found page cache optimization.
5.0.0 20 January 2023 >=6.4.11.0
  • - The loading of Javascript in the cookie settings has been optimized.
  • - Adjusted cookie settings in the admin interface.
4.4.0 16 January 2023 >=6.4.11.0
  • - Cookie settings extended to load Javascript.
4.3.4 13 January 2023 >=6.4.11.0
  • - Adds additional cookie ids for the hotjar cookies.
4.3.3 30 December 2022 >=6.4.11.0
  • - Fixes a problem where the cookie notice kept appearing on 404 pages with an assigned experience world.
4.3.2 15 December 2022 >=6.4.11.0
  • - Optimised loading of cookie styles from plugin configuration.
4.3.1 14 December 2022 >=6.4.11.0
  • - Iframe display optimized.
4.3.0 13 December 2022 >=6.4.11.0
  • - External content can now be loaded via defined cookies and HTML code.
4.2.0 26 November 2022 >=6.4.11.0
  • - Adds a scheduled task that automatically deletes unknown cookies from the system after a specified period of time.
4.1.0 26 November 2022 >=6.4.11.0
  • - Allows to change the position of the cookie buttons in the plugin setting.
4.0.5 26 November 2022 >=6.4.11.0
  • - Fixes a page load problem when the URL does not exist
4.0.4 26 November 2022 >=6.4.11.0
  • - Improved compatibility with the ACRIS Import Export plugin.
4.0.3 26 November 2022 >=6.4.11.0
  • - Fixes a problem where cookies were still not active after accepting them.
4.0.2 26 November 2022 >=6.4.11.0
  • - HTTP cache optimisations.
4.0.1 26 November 2022 >=6.4.11.0
  • - Improved compatibility with Shopware >= 6.4.11.0.
4.0.0 26 November 2022 >=6.4.11.0
  • - Compatibility with Shopware >= 6.4.11.0.
3.5.0 26 November 2022 >=6.4.1.0
  • - Allows to change the position of the cookie buttons in the plugin setting.
  • - Fixes a page load problem when the URL does not exist
3.4.3 26 November 2022 >=6.4.1.0
  • - Improved compatibility with the ACRIS Import Export plugin.
3.4.2 26 November 2022 >=6.4.1.0
  • - Fixes a problem where cookies were still not active after accepting them.
3.4.1 26 November 2022 >=6.4.1.0
  • - Optimizes plugin image.
  • - Improves compatibility with Shopware >= 6.4.10.0.
  • - Optimizes plugin color in administration.
3.4.0 26 November 2022 >=6.4.1.0
  • - Automatically sets functional cookies in the browser that originate from Shopware itself or a Shopware plugin and have a default value.
  • - Problem fixes in connection with the use of Google reCAPTCHA.
3.3.5 26 November 2022 >=6.4.1.0
  • - Improve the regular expression of the detection of the session cookie so that other cookies containing "session-" are not also detected and approved. Add the ledgerCurrency cookie to the AmazonPay cookie.
3.3.4 26 November 2022 >=6.4.1.0
  • - Compatibility with Shopware 6.4.8.0.
3.3.3 26 November 2022 >=6.4.0.0
  • - Cache optimisations in conjunction with other plugins
3.3.2 26 November 2022 >=6.4.0.0
  • - Fixes a problem with plugin activation.
3.3.1 26 November 2022 >=6.4.0.0
  • - Fixes problems when using the PayPal cookie in conjunction with the Safari browser.
3.3.0 26 November 2022 >=6.4.0.0
  • - Changing the IDs of the cookie buttons and cookie settings in the HTML code so that they are no longer hidden by the browsers' ad blockers.
3.2.0 26 November 2022 >=6.4.0.0
  • - Added button same width option
3.1.8 26 November 2022 >=6.4.0.0
  • - Code optimisations. Removal of old code parts.
3.1.7 26 November 2022 >=6.4.0.0
  • - Optimization of the cookie hint in the mobile view
3.1.6 26 November 2022 >=6.4.0.0
  • - Optimization of the modal window in mobile view when there is a lot of text.
3.1.5 26 November 2022 >=6.4.0.0
  • - Fixes a possible issue where cookie and cookie groups were inserted with the wrong translation.
3.1.4 26 November 2022 >=6.4.0.0
  • - Optimization in conjunction with other plugins. Fires the javascript event of the changed cookies only after the changes have also been transmitted to the backend.
3.1.3 26 November 2022 >=6.4.0.0
  • - Adds the Google Tag Manager debug cookie to the list of cookies already known in advance.
3.1.2 26 November 2022 >=6.4.0.0
  • - Fixes a possible problem where download files generated in the admin by the Import / Export module could not be downloaded.
3.1.1 26 November 2022 >=6.4.0.0
  • - Fixes possible problems in connection with Internet Explorer.
3.1.0 26 November 2022 >=6.4.0.0
  • - Changes the cookie ID of Google Analytics for the detection of the new cookie structure.
  • - Attention: The instructions for the Google Tag Manager have also changed!
3.0.7 26 November 2022 >=6.4.0.0
  • - Fixes an issue where a critical PHP error occurs after a while.
3.0.6 26 November 2022 >=6.4.0.0
  • - From now on, the title and the text of the functional cookie group inserted in the default can be changed.
3.0.5 26 November 2022 >=6.4.0.0
  • - Fixes problems when changing the currency that it was still displayed incorrectly on pages saved in the Http cache.
3.0.4 26 November 2022 >=6.4.0.0
  • - Optimisation in connection with the Shopware Http Cache
3.0.3 26 November 2022 >=6.4.0.0
  • - Fixes a possible problem in connection with various third-party plug-ins.
3.0.2 26 November 2022 >=6.4.0.0
  • - Optimize module of cookie group in administration.
3.0.1 26 November 2022 >=6.4.0.0
  • - Performance optimisations
3.0.0 26 November 2022 >=6.4.0.0
  • - Compatibility with Shopware >= 6.4.0.0.
2.8.12 26 November 2022 >=6.3.0.0
  • - Fixes a possible problem in connection with various third-party plug-ins.
2.8.11 26 November 2022 >=6.3.0.0
  • - Performance optimisations
2.8.10 26 November 2022 >=6.3.0.0
  • - Improved compatibility with other plugins when opening the cookie notice.
2.8.9 26 November 2022 >=6.3.0.0
  • - Fixes problems where the cookie notice keeps appearing due to a JavaScript problem when accepting cookies.
  • - Prevents problems that can be caused by special characters of various kinds.
2.8.8 26 November 2022 >=6.3.0.0
  • - Fixes an issue where cookies from other third-party plugins are not automatically detected.
2.8.7 26 November 2022 >=6.3.0.0
  • - Fix problem with language missing data.
2.8.6 26 November 2022 >=6.3.0.0
  • - Removes the acrisCookieConsent.footerCmsPageLinkPrefixFirst text module and inserts 3 text modules instead acrisCookieConsent.footerCmsPageLinkPrefixFirstFirst, acrisCookieConsent.footerCmsPageLinkPrefixFirstSecond and acrisCookieConsent.footerCmsPageLinkPrefixFirstThird for better customisability.
  • - Removes deprecated snippet services.
2.8.5 26 November 2022 >=6.3.0.0
  • - The Google Analytics cookie inserted by Shopware in the standard will no longer be added from now on unless Google Analytics has been marked as active in the sales channel or no tracking ID has been specified.
2.8.4 26 November 2022 >=6.3.0.0
  • - Fixes a possible problem with the specific modification of cookies or cookie groups that can delete functional cookies.
Reviews

Average rating of 4.97 out of 5 stars

38 reviews

38
0
0
0
0

Super PlugIn

Review with rating of 5 out of 5 stars

· 21 May 2026

Ein sehr gutes PlugIn und vor allem ein hilfsbereiter Support.
Hier macht man nichts falsch.

Great Service!

Review with rating of 5 out of 5 stars

· 21 May 2026

-

Herzlichen Dank

Review with rating of 5 out of 5 stars

· 18 May 2026

Alles prima und bester Support. Vielen Dank dafür.

Wie immer ...

Review with rating of 4.5 out of 5 stars

· 16 February 2026

ACRIS gehört zu den Herstellern, deren Plugins sich grundsätzlich wie gerne in meinen Shops befinden.
Sie tun, was sie versprechen, funktionieren wie dokumentiert und der ausnahmslos freundliche Support ist gerne hilfsbereit und offen für konstruktive Änderungen.

Top service

Review with rating of 5 out of 5 stars

· 25 September 2025

Funktioniert hervorragend