This site has moved.
*** This page is deprecated. Please click here for the new version ***
If you want to track the number of clicks on a specific item in the Table, it's possible! Useful if you display a list of files to download for example.
Note: This has been updated to use the new tracking code from Google Analytics (linked to Universal Analytics)
In settings tab make sure you specify your Google Analytics Tracking ID
Now in your templates, write the links to track with the following syntax:
1
<a href="{{Url}}" onclick="ga('send', 'pageview', '{{URL to track}}');">{{Link Text}}</a>
Where :
{{Url}} : 'Url' is the column header of the link URL column
{{URL to track}} : 'URL to track' is the columns header of the column containing the partial URL you want to record in Google Analytics. For example if you want your viewers to download http://www.example.com/files/download.zip you can use the partial URL: /files/download.zip
{{Link Text}}: 'Link Text' is the columns header of link text column.
Note: You will find more information on the use of Template here.