Danielle:
I posted earlier that I had manually added the Analytics tracking code to my tpl_main_page.php file. I just removed it because the javascript link for google is a src=http:// so when customers are on an https:// page of the site, e.g. login, checkout, etc. a warning box pops up that says "This page contains both secure and insecure items. Do you want to display the insecure items?"
Will this happen if I use this mod? I'm assuming it will, but wanted to ask anyways!
This can be fixed by adding a simple check if you are on a secure page and then include the secure google analytics code like this...
if ($request_type == 'NONSSL') {
$google_analytics_url = "http://www.google-analytics.com/urchin.js";
} else {
$google_analytics_url = "https://ssl.google-analytics.com/urchin.js";
}
echo '<script src="' . $google_analytics_url . '" type="text/javascript">
</script>
I am working on getting my version of this mod avaialble for all that minimizes JS and allows you to track sales based on this useful mod from a_berezin.