Google Analytics Liquid Tag
{% google_analytics agent: 'UA-123456-1' %}
Replace UA-123456-1 with the code Google gives you. This tag generates code similar to the following:
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>Available Parameters
<script type="text/javascript">
_uacct = "UA-123456-1";
urchinTracker();
</script>
- agent: The code that identifies your website. Google will provide you with this number. The number follows this format: UA-123456-1.



Comments(0)