@netstay
14 years, 11 months ago
That’s right r-a-y. I tried your solution and it’s works but it’s necesary to escape all apostrophe inside the echo command. I mean:
function bp_ga_analytics() {
echo ‘<script type=”text/javascript”>
var gaJsHost = ((“https:” == document.location.protocol) ? “https://ssl.” : “http://www.”);
document.write(unescape(“%3Cscript src=\'” + gaJsHost + “google-analytics.com/ga.js\’ type=\’text/javascript\’%3E%3C/script%3E”));
</script>
<script type=”text/javascript”>
try {
var pageTracker = _gat._getTracker(“UA-XXX”);
pageTracker._trackPageview();
} catch(err) {}</script>’;
}
add_action(‘bp_after_footer’, ‘bp_ga_analytics’);