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
Gutes Plugin und schnelle Reaktionszeit beim Support
5.0

Average rating of 5 out of 5 stars

by Klassen
15 March 2024 10:51
Das Plugin entspricht unseren Erwartungen und der Support reagiert auch sehr schnell auf Anfragen.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Plugin funktioniert im Gegensatz zu anderen
4.5

Average rating of 4.5 out of 5 stars

by Moira
28 February 2024 18:26
Funktioniert bei uns besser als das hochpreisige Produkt, welches wir jetzt gekündigt haben. Problem war bei uns die fehlende Umsatzmessung für E-Commerce und Conversions. Mit diesem Plugin funktioniert nun alles.
5.0 Functionality
5.0 Usability
3.0 Documentation
5.0 Support
Erstklassig in jeder Hinsicht
5.0

Average rating of 5 out of 5 stars

by Christopher B.
22 February 2024 08:16
Ein in jeder Hinsicht erstklassiges Plugin. Es ist einfach zu Bedienen, die Funktionen erklären sich von selbst, die Dokumentation ist absolut schlüssig und verständlich. Bemerkenswert ist der Support. Bei einem kleinen Problem wurde in Höchstgeschwindigkeit reagiert, binnen weniger Stunden ein Update bereitgestellt und alles funktioniert nun so, wie wir es uns vorgestellt haben. Vielen Dank an Acris, vorbehaltlos empfehlenswert!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Toller Support!
5.0

Average rating of 5 out of 5 stars

by Anne Fauser
12 December 2023 16:20
Bei uns hat es den Banner zeitweise im Shop nicht mehr angezeigt, wegen einer falschen Einstellung im Backend. Der Support war super schnell und hat das Problem gleich erkannt.

Das Plugin an sich funktioniert reibungslos und tut was es soll.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Top Plugin
5.0

Average rating of 5 out of 5 stars

by Peter Gras
6 November 2023 10:43
Dieses Plugin ist ein must have. Schnelle und einfache Installation über den Plugin Manager. Der support ist blitzschnell, super kompetent und freundlich. Sehr sehr empfehlenswert
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Wohl bestes Cookie-Plugin mit schnellem unkomplizierten Support
5.0

Average rating of 5 out of 5 stars

by Micha ADM
19 September 2023 16:58
Hilft sehr dabei die Cookies vernünftig zu kategorisieren. Auch bei kleineren Problemen gibt's prompte Lösungen und Updates. Top!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Plugin funktional und super supported
5.0

Average rating of 5 out of 5 stars

by NEFAL.tv
11 July 2023 15:17
Support hat blitzmässig reagiert. Plugin können wir nur empfehlen.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Absolut empfehlenswert: Plugin, Dokumentation und Support super
5.0

Average rating of 5 out of 5 stars

by Norman | bueromoebelprofi
11 June 2023 15:55
Die Dokumentation zur Installation des Plugin ist sehr strukturiert aufgebaut und leicht zu verstehen. Trotzdem hat sich bei unseren Umbau der Copy&Paste-Fehlerteufel eingeschlichen. Das Acris Team war zügig zur Stelle und hat sich erfolgreich auf die Fehlersuche begeben, tlw. sogar am Wochenende. Echt super! Jetzt funktioniert wieder alles wie es soll.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Top Erweiterung mit kompetentem, schnellem Support!
5.0

Average rating of 5 out of 5 stars

by Bodo Gewinner
31 May 2023 14:39
Dickes Lob an das Entwicklerteam von ACRIS und den sehr freundlichen, kompetenten und zudem schnellen Support! Wir hatten sozusagen ein Nadel im Heuhaufen Problemchen mit einer GA4 - und dieser Erweiterung, das identifiziert und ausgemerzt wurde. Bei ACRIS fühlen wir uns sehr gut aufgehoben und können euch uneingeschränkt weiterempfehlen!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Mega Support!
5.0

Average rating of 5 out of 5 stars

by Julian Fleischmann | mr. pixel
16 May 2023 14:57
Vielen Dank an das Acris-Team,
grundsätzlich funktioniert die automatische Erkennung der Cookies richtig gut. Nur bei einem mal hat es ein Cookie eines Drittabnieter-Plugins nicht erkannt. Da haben wir wirklich lange gesucht. Dank des außerordentlich guten Supports von ACRIS und mehreren Mitarbeitern bei Euch haben wir das nun endlich lösen können.

Super Arbeit und gerne weiter von uns empfohlen!

Beste Grüße
Julian, mr. pixel
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