Hi @wizard71 @oizovski
Sorry to hear you are having this issue.
We found this is being caused by some recent changes in the Branda plugin to prevent XSS attacks, but since the tracking code needs the script tag our team is reviewing the best approach to keep the site secure and also output the code as it?should.
Until the new release is done, we suggest downgrading the plugin version or using the tracking codes as a mu-plugin:
<?php
add_action('wp_head', 'wpmudev_add_tracking_code');
function wpmudev_add_tracking_code() {
?>
<script type="text/javascript">
// Codes
</script>
<?php
}
You can add the above snippet as a mu-plugin on your?site:
https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Kind Regards,
Kris