a) I noticed that using the "before body" option places the GA code above the <body> tag but below the </head> tag. I'm not sure if that causes issues for GA. Google says to place it before the </head> tag.
b) I also noticed that Google may have changed their javascript code.
I hope BBR doesn't mind but here are the 2 edits I made to correct this.
admincp -> products and plugins -> plugin manager
Look for "BBR Google Analytics Addon" and click edit
Look for:
PHP Code:
$BBR_find = '<body>';
and replace that with:
PHP Code:
$BBR_find = '</head>';
Look for:
PHP Code:
(document.getElementsByTagName(\'head\')[0] || document.getElementsByTagName(\'body\')[0]).appendChild(ga);
and replace that with:
PHP Code:
var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s);
Thanks