I am unable to use code injection on my pages because I get the same code, which appears at the bottom of the page:
<script>Static.COOKIE_BANNER_CAPABLE = true;</script>
When I put a script in code injection it won't place the script between the <script> </script> symbols, but rather puts it outside of them. So for example:
<script>
fbq('track', 'Lead');
</script>
Is not rendered correctly and it winds up looking like this on the page:
</script><script> fbq('track', 'Lead');</script><script>Static.COOKIE_BANNER_CAPABLE = true;</script>
Any idea of how I can fix things so that the scripts I put in code injection on a page work? RIght now they don't and I think it may be related to this issue. Technically, the script should apply in the header.
Thanks for any ideas.