Skip to main content Skip to search Skip to main navigation
Diese Seite ist auch auf Deutsch verfügbar.
ACRIS E-Commerce GmbH

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

Rating: 5.0

Average rating of 4.9 out of 5 stars

(34 reviews)
Downloads: 1,456

Description

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

About the Extension

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/66/a5/40/1750689076/GTM_Container_Vorlage_bitte_entpacken_v6.zip


  • 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 src="https://www.acris.at/media/b0/a0/69/1657629899/ACRIS_Logo_Original_2022_RGB_ohne_Claim.png">

      Nachher:

      <img 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 target="_blank" rel="noopener nofollow" href="https://fonts.googleapis.com/css?family=Kanit:400" type="text/css" >

      Nachher:

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

    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 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 >Externe Inhalte werden nach der Bestätigung des Datenschutzhinweises geladen.</div>
    • Oder ein Info Text - Beispiel.:

      <img 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 role="alert"> <div > <div >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 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 > {% 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);
    }


    Translated with DeepL.com (free version)

Details

  • Available: English, German
  • Latest update: 7 October 2025
  • Publication date: 10 February 2020
  • Version: 9.5.0
  • Category: Special features

Resources

Reviews (34)

Average rating
5.0

Average rating of 4.9 out of 5 stars

Based on 34 reviews
5.0 Functionality
5.0 Usability
4.9 Documentation
5.0 Support

100 %
0 %
0 %
0 %
0 %

Write a review

If you downloaded this extension you can write a review in the Shopware Account.

Write a review
⭐️⭐️⭐️⭐️⭐️ Super Erweiterung + Mega Support⭐️⭐️⭐️⭐️⭐️
5.0

Average rating of 5 out of 5 stars

by Ursula_NEU R.
28 March 2023 10:26
Die Erweiterung wird nur noch durch den Support übertroffen. Wir sind schlichtweg begeistert und können das Plugin nur wärmstens empfehlen. Wir hatten ein drängendes, sehr spezielles Problem und der Support hat sich intensiv persönlich Zeit genommen, und konnte uns erfolgreich helfen.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
IT Recht Kanzlei + Acris = perfekt
5.0

Average rating of 5 out of 5 stars

by Henning Vielitz
13 March 2023 16:02
Wir haben uns aus 3 Gründen für diese Cookie Erweiterung entschieden:
Empfohlen von IT Recht Kanzlei = rechtsicher
Acris hat ausschließlich saubere Erweiterungen
Einfach einzustellen
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Blitz-Update "zwischen den Jahren"
5.0

Average rating of 5 out of 5 stars

by Florian König
30 December 2022 09:35
Wir hatten ein Problem gemeldet, dass bei 404-Seiten der Cockie Hinweis immer wieder auftaucht und sich nicht wegclicken lässt. Es dauerte nicht mal 24 Stunden, bis ein fehlerbehebendes Update 4.3.3 veröffentlicht wurde - obwohl wir uns zwischen Weihnachten und Neujahr befanden.

Das ist mal ein wirklich sensationell schneller und kompetenter Service. Supergut!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Perfekter Support, tolles Plugin
5.0

Average rating of 5 out of 5 stars

by Florian
29 December 2022 00:14
Plugin funktioniert wie gewünscht, Support reagierte bei Unklarheiten sehr freundlich und kompetent.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Tolle Erweiterung und hervorragender Support.
5.0

Average rating of 5 out of 5 stars

by Marco Traulsen
20 July 2022 07:58
Ein tolles Plugin und ausgezeichnete Erweiterung für den Shop. Ich hatte ein Verständnisfragen und diese wurden sofort und schnell beantwortet. Also, ein tolles Produkt und ein großartiger Service. Ganz klare Empfehlung.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Ein Must-have Plugin
5.0

Average rating of 5 out of 5 stars

by Dennis Rüsing
21 June 2022 14:38
Wieder ein geniales Plugin von ACRIS. Sehr umfangreich aber dennoch simpel in der Handhabung - ich bin wieder einmal sehr zufrieden! (Zudem ist der Support absolute Spitzenklasse!)
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Empfehlenswerte Erweiterung mit großartigem Support
5.0

Average rating of 5 out of 5 stars

by Marco B.
1 April 2022 23:11
Dieses Cookie-Tool ist wirklich empfehlenswert und funktioniert einwandfrei. Der Support reagiert auf Anfragen schnell und freundlich. Ein kleiner Fehler im Plugin wurde blitzschnell mit einem Update korrigiert.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Einfach ein super Plugin und bei Bedarf schneller Support
5.0

Average rating of 5 out of 5 stars

by Andreas Bechter
22 November 2021 16:16
Macht genau was es soll, top Produkt. Bei Fragen bekommt man unkomplizierte schnelle Hilfe und einen top Support!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Super
5.0

Average rating of 5 out of 5 stars

by Hans-Peter Frey
30 June 2021 19:18
Korrespodiert super mit dem Plug-in vom Händlerbund. Passt!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Top Plugin und schneller Support
5.0

Average rating of 5 out of 5 stars

by Philipp
4 November 2020 09:22
-
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support

About the Extension Partner

ACRIS E-Commerce GmbH

ACRIS E-Commerce GmbH

Partner Status

  • Shopware Bronze Partner Shopware
    Bronze Partner
  • Shopware Premium Extension Partner Shopware
    Premium Extension Partner

Details

  • Ø-Rating: 4.9

    Average rating of 4.9 out of 5 stars

  • Partner since: 2015
  • Extensions: 162

Support

  • Based in: Austria
  • Speaks: German, English
  • Response time: Very quickly