Depending on how your website is built and what scripts your website uses, sometimes manual code needs to be added to third party scripts in order to control them properly.
After implementing and testing the Usercentrics consent solution on your website, if you notice that LinkedIn Insight Tag related cookies are still being loaded on users' browsers, you can add additional code to the LinkedIn Insight Tag script to ensure Usercentrics can properly control it.
Here are some common tracking cookies that load on a user's browser after the LinkedIn Insight Tag script fires:

So if your LinkedIn Insight Tag script looks like this:
<script type="text/javascript">
console.log("Hello from LinkedIn Pixel!")
_linkedin_partner_id = "XXXXXX";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
</script><script>
(function(l) {
if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])};
window.lintrk.q=[]}
var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript";b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);})(window.lintrk);
</script>
<noscript>
<img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=XXXXXX&fmt=gif" />
</noscript>You need to add the following, right after the second "<script ":
type="text/plain" data-usercentrics="LinkedIn Insight Tag"
It will now look like this:
<script type="text/javascript">
console.log("Hello from LinkedIn Pixel!")
_linkedin_partner_id = "XXXXXXXX";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
</script><script type="text/plain" data-usercentrics="LinkedIn Insight Tag">
(function(l) {
if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])};
window.lintrk.q=[]}
var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript";b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);})(window.lintrk);
</script>
<noscript>
<img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=XXXXXXXX&fmt=gif" />
</noscript>Then clear cache and test the website. You should see LinkedIn Insight Tag related cookies no longer load until after a user gives consent.
Notice that the snippet was only added to the second <script>, however after testing, no more tracking cookies are placed on the user's browser until after consent.
Still firing?
Visit the Cookie Policy and Consent Tool portion of the questionnaire (scroll to bottom) and make sure you have the Service "LinkedIn Insight Tag" listed.
Still having issues? Submit a ticket if you are having an issue (and please provide a link to your website along with the linkedin script you have in the <head> of your website).