Using Google Analytics
Google Analytics is a very popular service many merchants use to do tracking on their sites. Typically this involves inserting a small amount of javascript into your site. This is very easily accomplished with CFWebstore by pasting the code into your layout page (such as layouts/lay_default.cfm).
What you may find though is that you get an error during checkout due to the code not using an https: link. Switching the code to use strictly the https link will often work, but here is a more elegant solution. Use this javascript instead to switch between the http: and https: links (modify the link as needed for whatever analytic service you are using):
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/urchin.js' type='text/javascript'%3E%3C/script%3E"));
</script>
Now your site won't throw any errors!









tracking code into CFWebstore? This would be really useful.
-greg