- Help Center
- Consent notice creation
- Customization
Change buttons order - WEB [NEW FLOW]
By default, the "Learn more" button will be displayed before the "Agree" button on the sticky banner. If you use the pop-in banner format, "Learn more" will be displayed after "Agree".
✅ Steps for changing the button order on a web notice:
- Go to Consent notices.
- Go to step 2. Customization.
- Click on Advanced settings then Custom JSON.
- Add code (see below) in the Custom JSON field.
✍️ Code to insert
To change the order you need to set the value at :
- "before" for pop-in format
- "after" for sticky banner format
Pop-in format :
{
"notice": {
"learnMorePosition": "before"
}
}
Sticky banner format :
{
"notice": {
"learnMorePosition": "after"
}
}
📰 Please refer to our developer guide for more information.