Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dpaternina9/2e4769db54455879aab3f6e881c16aa0 to your computer and use it in GitHub Desktop.
Save dpaternina9/2e4769db54455879aab3f6e881c16aa0 to your computer and use it in GitHub Desktop.
<?php
function monsterinsights_cookieyes_dual_tracking_fix( $attributes ) {
if ( class_exists( 'Cookie_Law_Info_Cookieyes' ) ) {
$attributes['type'] = 'text/plain';
$attributes['data-cli-class'] = 'cli-blocker-script';
$attributes['data-cli-script-type'] = 'analytics';
$attributes['data-cli-block'] = 'true';
$attributes['data-cli-element-position'] = 'head';
}
return $attributes;
}
add_filter('monsterinsights_tracking_analytics_script_attributes', 'monsterinsights_cookieyes_dual_tracking_fix');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment