you can make it whit php and the api from your piwik.
my code
--> change
http://mych-studio.com/admin/piwik/index.php == your piwik addres
".$site['idsite']." == id of your site
token == token from a account on piwik
my code
--> change
http://mych-studio.com/admin/piwik/index.php == your piwik addres
".$site['idsite']." == id of your site
token == token from a account on piwik
<?php $data = json_decode(file_get_contents("http://mych-studio.com/admin/piwik/index.php?module=API&method=VisitsSummary.get&idSite=".$site['idsite']."&period=range&date=2000-01-01,today&format=json&token_auth=token" , FILE_USE_INCLUDE_PATH), true); echo 'this site have'.$data['nb_actions'].' vieuws,<br/>From '.$data['nb_visits'].' visiters.'; ?>