Built-in Paywall: Stopping ads for Subscribers
Clickio Consent CMP automatically stops Clickio and directly-implemented Google ads (AdSense, Ad Manager) from being shown personalized ads to users who subscribed via Built-in Paywall and rejected personalized advertising. The CMP also passes the rejection signal via the TCF v2.2 API.
Pausing Tags Until User Choice Is Made and Stopping Execution for Paid Subscribers
The following implementation will pause the tag and prevent it from being executed for users who subscribed via the Built-in Paywall.
- Modify the script type to
text/clickiocmp
. - Ensure the script has the
async
attribute. - Add
data-clickio-cmp-paywall-subscribed="0"
to execute only for non-subscribers.
Modification Example:
Original tag:
<script type="text/javascript">
[[CODE]]
</script>
Modified tag:
<script async type="text/clickiocmp" data-clickio-cmp-paywall-subscribed="0">
[[CODE]]
</script>