---
title: "Configuration"
version: "7.1"
source: "Configuration/Index.rst"
rendered: "2026-09-18T07:55:59+00:00"
---

# Configuration {#configuration-1}

## Loading of jQuery {#loading-of-jquery}

This extensions loads its own jQuery file. You can disable it by adding the following TypoScript inside your
`constants.typoscript` or by editing the constants inside the constant editor in the Template module.

```typoscript
plugin.tx_waconcookiemanagement_cookiefreigabe.settings.includeJQuery = 0
```

## Define your cookies {#define-your-cookies}

Create a new folder for your cookies (here "WCM").

Set the folder in TypoScript inside your
`constants.typoscript` or by editing the constants inside the constant editor in the Template module.

```typoscript
plugin.tx_waconcookiemanagement_cookiefreigabe.settings.cookieStorage = {your pid}
```

Go to the list module an create a "Cookie" record for each cookie you use on your website

![New Cookie record](../Images/wcm_screenshot8.jpg)

Fill out the fields as accurate as possible

![Cookie information](../Images/wcm_screenshot7.jpg)

Edit Cookie information when needed

![Edit Cookie information](../Images/wcm_screenshot6.jpg)

## Adding links inside bodytext for displaying the cookie consent box {#adding-links-inside-bodytext-for-displaying-the-cookie-consent-box}

In Rich Text Editors you can make some settings inside your `.yaml` file so that you can insert links to the
cookie consent box inside any bodytext.

Put the following configuration inside your `.yaml` file for your RTE.
For example, it could be located inside `Configuration/RTE/Default.yaml` but this depends on your sitepackage/exension:

```php
editor:
    config:
        stylesSet:
            - { name: "Cookie Set", element: "p", attributes: { 'class': 'cookie-set' } }

```

With this settings, you get an extra dropdown item inside the Style-dropdown list.
This example surrounds the `<p>`-Tag with an extra class `cookie-set`. f.e.: `<p class="cookie-set">Cookie settings</p>`

![Style dropdown example](../Images/Configuration/style-dropdown-configuration.png)

> [!IMPORTANT]
> You can use any other solution for adding this class to your text. It is only important, that the element must have
> the class `cookie-set`.
>
> For example you can use a `<span>`-Tag like `<span class="cookie-set">Cookies</span>`.
>
> Be aware that you might need other settings than explained here.

## Define folder for scripts in \<head>-Tag {#define-folder-for-scripts-in-head-tag}

Create a new folder for your scripts you want to include in the \<head>.

Set the folder in TypoScript inside your
`constants.typoscript` or by editing the constants inside the constant editor in the Template module.

```typoscript
plugin.tx_waconcookiemanagement_cookiefreigabe.settings.headerScriptStorage = {your pid}
```
