Custom Code section allows administrator to inject any HTML code into predefined areas of the platform (excluding administrative pages).
| Custom CSS URL | Enter a URL to a custom CSS file that will be loaded on every page. |
To add scripts that require cookie consent in order to be executed, two attributes need to be added (both required) to the <script> tags:
type="text/plain"
data-category="your-category-name"
where your-category-name can be set to:
| functionality | for scripts that improve the general functionality of the site |
| analytics | for scripts that track user behavior for analytics and statistic purposes |
| marketing | for scripts that gather user data in order to display personalized ads and marketing materials |
Example:
<script type="text/plain" data-category="marketing"> // Your marketing pixel goes here </script>