Good day, due to our goal to achieve GDPR compliance, we're trying to implement an opt-in procedure using a commercial cookie-plugin called "Borlabs Cookie" with our WordPress-Network. We embedded Matomo with the following code/attributes: ```html <!-- Matomo --> <script type="text/javascript"> var _paq = _paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['requireConsent']); _paq.push(['trackPageView']); _paq.push(['trackAllContentImpressions']); _paq.push(['enableLinkTracking']); (function() { var u="//***/"; _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', '1']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Matomo Code --> ``` Tracking works fine, but Matomo creates _pk_id and _pk_ses at every session's start, **also if we don't set** `<script type="text/javascript"> _paq.push(['setConsentGiven']); </script>` at the bottom of the page, using our plugin. 'rememberConsentGiven' is no option, since we want to use our WordPress plugin to handle opt-in/opt-out. The support-pages weren't helpful as this doesn't seem to be the expected behaviour of "requireConsent". Could you please give me some advice on how to solve this problem? Thank you!