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 Facebook Pixel related cookie(s) 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 is the most common tracking cookie that comes from facebook (_fbp):

So if your LinkedIn Insight Tag script looks like this:
<!-- Meta Pixel Code --> <script type="text/javascript"> console.log("Hello from Meta Pixel") !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '26218376594419181'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=26218376594419181&ev=PageView&noscript=1" /></noscript> <!-- End Meta Pixel Code -->
You need to add the following, right after the second "<script ":
type="text/plain" data-usercentrics="Facebook Pixel"
It will now look like this:
<!-- Meta Pixel Code --> <script type="text/plain" data-usercentrics="Facebook Pixel"> console.log("Hello from Meta Pixel") !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '26218376594419181'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=26218376594419181&ev=PageView&noscript=1" /></noscript> <!-- End Meta Pixel Code -->
Here, we replaced
type="text/javascript"with
type="text/plain" data-usercentrics="Facebook Pixel"
Then clear cache and test the website. You should see Facebook Pixel related cookies no longer load until after a user gives consent.
Still firing?
Visit the Cookie Policy and Consent Tool portion of the questionnaire (scroll to bottom) and make sure you have the Service "Facebook Pixel" listed.
Still having issues? Submit a ticket if you are having an issue (and please provide a link to your website along with the Facebook Pixel (Meta Pixel) script you have in the <head> of your website).