De cookieverklaring aanpassen
Als je de cookieverklaring publiceert op je website zal deze zich aanpassen aan de layout van je website. Als je in je CSS zaken als lettertype, grootte, kolomopmaak gedefineerd hebt respecteert de cookieverklaring deze instellingen. Het kan noodzakelijk zijn zelf aanpassingen te maken aan het cookieverklaring template, bijvoorbeeld als je bepaalde standaard teksten niet wil weergeven (omdat deze bijvoorbeeld al worden weergegeven op je privacy pagina).
Alle aanpassingen doe je in de cookiebot manager.
Teksten weergeven

Wil je de standaard tekst niet weergeven met de cookieverklaring? Vink bovenstaande vinkje dan uit. Dit zorgt voor het volgende:


Wil je nog minder van de standard tekst weergeven? Dan zul je aan de slag moeten met een custom template. Selecteer onder Template custom template

Tot en met regel 22 bevat essentieële zaken met betrekking tot het genereren van de juiste taal en standard opmaak. Laat deze, tenzij je weet wat je doet, gewoon staan. Vanaf regel 23 wordt het interessant:
<p class="CookieDeclarationDialogText">
<xsl:value-of select="//Labels/Title" ></xsl:value-of>. <xsl:value-of select="//Labels/Text" ></xsl:value-of>
</p>
<p class="CookieDeclarationIntro">
<xsl:value-of select="//Labels/CookieGeneralIntro" ></xsl:value-of>
</p>
<p>
<xsl:value-of select="//Labels/ConsentDomains"></xsl:value-of>
</p>
<div id="CookieDeclarationUserStatusPanel"></div>
<br/>
<p class="CookieDeclarationLastUpdated">
<xsl:value-of select="//Labels/LastUpdated" disable-output-escaping="yes"></xsl:value-of>:
</p>
Wil je de standard tekst én de cookieverklaring introductie NIET weergeven? Verwijder dan de volgende regels:

<p class="CookieDeclarationDialogText">
<xsl:value-of select="//Labels/Title" ></xsl:value-of>. <xsl:value-of select="//Labels/Text" ></xsl:value-of>
</p>
<p class="CookieDeclarationIntro">
<xsl:value-of select="//Labels/CookieGeneralIntro" ></xsl:value-of>
</p>
Wil je de regel “Uw toestemming geldt voor de volgende gebieden” NIET weergeven? Verwijder dan de volgende regels:
<p>
<xsl:value-of select="//Labels/ConsentDomains"></xsl:value-of>
</p>
Volledige lijst met placeholders die gebruikt kunnen worden
Placeholder name | Description |
---|---|
//Labels/Title | Dialog heading |
//Labels/Text | Dialog body text |
//Labels/Language | Current language code |
//Labels/TextDirection | Current language text direction (LTR or RTL) |
//Labels/CookieGeneralIntro | General cookie introduction |
//Labels/AboutCookies | About Cookies label |
//Labels/CookiesOverview | Cookies Declaration label |
//Labels/LastUpdated | Declaration last updated date label |
//Labels/CookieTypeNecessaryTitle | Necessary cookies category title |
//Labels/CookieTypeNecessaryIntro | Necessary cookies introduction |
//Labels/CookieTypePreferenceTitle | Preference cookies category title |
//Labels/CookieTypePreferenceIntro | Preference cookies introduction |
//Labels/CookieTypeStatisticsTitle | Statistics cookies category title |
//Labels/CookieTypeStatisticsIntro | Statistics cookies introduction |
//Labels/CookieTypeMarketingTitle | Marketing cookies category title |
//Labels/CookieTypeMarketingIntro | Marketing cookies introduction |
//Labels/CookieTypeUnclassifiedTitle | Unclassified cookies category title |
//Labels/CookieTypeUnclassifiedIntro | Unclassified cookies introduction |
//Labels/HeaderName | Name |
//Labels/HeaderProvider | Provider |
//Labels/HeaderPurpose | Purpose |
//Labels/HeaderType | Type |
//Labels/HeaderExpiry | Expiry |
//Labels/ConsentDomains | Text label including a comma-separated list of domains which cookies are included in the cookie declaration. |
XML node //Cookies
Placeholder name | Description |
---|---|
//Cookies/Cookie | Collection of nodes with information for each cookie. |
/Cookie/Category | Category |
/Cookie/Domains | Collection of nodes with the name of each domain that uses the cookie. |
/Domains/Domain/DomainName | Name of the domain that set the cookie. |
/Domains/Domain/DomainIP | IP number |
/Domains/Domain/CountryID | Country code ID |
/Domains/Domain/CountryName | Country name |
/Cookie/Expire | Expiry |
/Cookie/ExpireDays | The cookie’s lifetime expressed numerically in number of days. |
/Cookie/ExpireSeconds | The cookie’s lifetime expressed numerically in number of seconds. |
/Cookie/FirstURL | First found URL |
/Cookie/HTTPOnly | True if the cookie can only be read by the server that set the cookie. |
/Cookie/Path | Path |
/Cookie/Persistent | True if the cookie is stored permanently on the user’s browser. |
/Cookie/Purpose | Purpose |
/Cookie/Secure | True if the cookie is set via an encrypted connection. |
/Cookie/TrackerType | Type |
/Cookie/TrackerTypeID | Type ID |
/Cookie/ThirdParty | True if the cookie is set by a third-party domain. |
/Cookie/Value | Example value |