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
Perfekt für uns mit TOP Support
5.0

Average rating of 5 out of 5 stars

by Ayko
7 August 2020 10:36
Das Plugin tut was es soll und läuft perfekt.
Ich war nicht ganz glücklich mit den ganzen (zwar grundsätzlich sinnvollen, aber für uns nicht relevanten) in den dataLayer gepushten Daten. Habe daraufhin angeregt, dass man das GTM Feature ggf. an- bzw. abschalten können sollte, ohne wirklich mit einer zeitnahen Umsetzung zu rechnen..
Drei Tage später ist das Update mit dem Feature da! Was will man mehr von einem Plugin Hersteller?!
Bitte weiter so! :)
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Das Plugin ist eine gute Erweiterung für unseren Shop
5.0

Average rating of 5 out of 5 stars

by Art von ELS-Licht
6 August 2020 10:50
Das Plugin läuft perfekt und macht was es soll.
Der Support hat schnell und kompetent auf unsere Wünsche reagiert.
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Einfach nur Perfekt!
5.0

Average rating of 5 out of 5 stars

by Rainer Amend
23 April 2020 23:05
Der Support ist phänomenal, sehr schnell, wir wollten ein ein Plugin etwas geändert habe, welches sofort erledigt wurde. Danke!
5.0 Functionality
5.0 Usability
5.0 Documentation
5.0 Support
Wichtiges Plugin und Top Support
5.0

Average rating of 5 out of 5 stars

by INKICKS
3 April 2020 14:21
Genau das Plugin was wir uns gewünscht haben, weil wir die Shopware Cookie Umsetzung nicht wirklich gut fanden. Mit der Zeit hatten wir ein paar Probleme, wo wir auf den Support angewiesen waren. Und der war wirklich hervorragend. Danke nochmal!
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