consent levels

It's possible to set consent independently for three categories:

  1. essential cookie consent
  2. tracking cookie consent
  3. tracking consent

essential cookie consent

cookies that are considered essential:

tracking cookie consent

Saves tracking cookies if enabled. Tracks without cookies when disabled and when selected tracking
implementation(s) support tracking without cookies.

matomo cookies

tracking consent

Tracks the user with the configured tracking imeplementation(s). If tracking cookie consent is
disabled and a tracking implementation doesn't support tracking without cookies, it does not track.


setting consent

conf key

use the following keys to set the default behaviour if no consent is set via integration URL explicitly (otherwise everything currently defaults to true):

integration URL

consent may be set initially via the following integration url parameters

everything defaults to `true` if not set or to the conf key values if they exist.

<!-- begin excentos integration code -->
<script 
	src="//service.excentos.com/heroal/DE/app_Bike-Advisor/de_DE/loadadvisor?theme=default&xcEssentialCookieConsent=false&xcTrackingConsent=false&xcTrackingCookieConsent=false"> 
</script> 
<!-- end excentos integration code // start content area where Product Guide is displayed -->
<div id="xc_application">
	<div id="xc_application_pane"></div>  
	<div id="xc_loader"></div>
</div>
<!-- end excentos content area -->


global function (advanced)

Once the advisor has been initialised, there is a global function available for changing consent. This may be used to pass consent changes to the advisor:
window.xcSetConsent(consent) 
with

consent={
	trackingConsent: true|false,
	essentialCookieConsent: true|false,
	trackingCookieConsent: true|false,
}


not all options have to be set. anything that's not passed will stay on the previous setting.

example usage

enable essential cookies and tracking, disable tracking cookies

window.xcSetConsent({
	trackingConsent: true,
	essentialCookieConsent: true,
	trackingCookieConsent: false,
})


disable tracking, keep all other settings

window.xcSetConsent({
	trackingConsent: false,
})

custom implementation

custom implementation by excentos to connect an existing tracking tool via available interfaces to our consent
management

matomo notes