Hi,

I've installed Simple Google Analytics, and wanted to ask a quick question about a possible modification. My store is on a subdomain of my main site. Google says that in order to track subdomains in the same profile as the main domain, a line of code needs to be added to the normal Analytics call.

The line that needs to be added is the one in bold. (This is the code as copied right off Google's help page)

Code:
<script>
  _uacct="UA-xxxx-x";
  _udn="mystore.com";
  urchinTracker();
</script>
So, do I just add this line to the google_analytics.php file like so:

Code:
<script type="text/javascript">
_uacct = "' . GOOGLE_ANALYTICS_UACCT . '";
_udn="mystore.com";
urchinTracker();
</script>';
(with my domain in place of mystore.com)

Should that work? Thanks!