The {piwik} TAG allows easy user statistics through Piwik - the Open source web analytics software.
→ Since SEO 0.7.
The ID of your Piwik website.
The name of the template variable the value will be assigned to.
The full URL of your Piwik installation (only the path, see example 2).
Whether logged in user will be tracked (default: false).
Whether clicked links will be tracked (default: true).
If you do not have a running Piwik installation yet, follow this short installation list:
If you already have Piwik running, skip this step and see Example 2.
This example shows the usage of Piwik installed in /addon/piwik/ with your Website configured as ID 1 (in Piwik).
<html> <head> <title>Piwik tracking</title> </head> <body> {piwik id="1"} </body> </html>
This example shows the usage of Piwik installed in a differetn place (or even domnain) with your Website configured as ID 5 (in Piwik).
<html> <head> <title>Piwik external tracking</title> </head> <body> {piwik path="http://www.example.com/piwik/" id="5"} </body> </html>