Overview
Freestar has partnered with Sourcepoint to provide Publishers with comprehensive consent management. Using this option, Freestar automatically injects the Sourcepoint CMP onto the page when the Freestar head code initializes. As outlined below, you must add a resurfacing link and some CSS to complete this implementation.
An example of the Sourcepoint CMP UI
Resurfacing Link
Place the <button> element in the <footer> of your page. The link will determine the user's geolocation and display Do Not Sell or Share My Personal Information in CCPA or Privacy Preferences in GDPR regions.
CSS for Privacy Button
Add the CSS to your existing file or hardcode the <style> tag into the <head>. visibility: hidden; is required. Change the rest of the CSS to match your site's design.
CSS
<style>
#pmLink {
visibility: hidden;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
}
#pmLink:hover {
visibility: visible;
color: grey;
}
</style>
Below is an example of what this may look like
Please submit a request here if you need additional assistance.
What's Next