Some users may configure their Consent Management Platform to be disabled for users visiting from certain regions.
What happens if consent banner is disabled?
If the consent banner is disabled, your links to open the preference center will not function. For this reason, you may want to adjust the 'Consent preferences' links on your site that open the consent preferences modal (often found in your site footer).
How can I customize the 'Consent preferences' link when the consent banner is disabled?
Target this CSS class to apply visual treatment on your 'Consent preferences' links when a visitor accesses your site from a region when the banner is disabled:
.termly-display-preferences--disabled
Example implementation:
<style> .termly-display-preferences--disabled { // Apply whatever treatment you would like here opacity: 50%; pointer-events: none; } </style> <button class="termly-display-preferences"> Consent Preferences</button>