Quote:
Originally Posted by TeknoSounds
Okay to fix the <body> issue:
AdminCP -> Plugin Manager -> Edit BBR Google Analytics
Find
Code:
$BBR_find='<body>';
and change it to
Code:
$BBR_find='</head>';
What I'm worried about is the change between the latest file on here and my version...the function difference is this:
Mine & on Google's site
Code:
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
versus whats in the latest file on here:
Code:
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
Note the last line there....
|
Do this still work? Or did 4.1.2 break it and thus make the developer flee to IPboard?