For that purpose you should edit the file themes/classic/views/layouts/main.php and find here the lines:
- Code: Select all
<div class="footer">
<p class="slogan">© <?php echo param('siteName_'.Yii::app()->language).', '.date('Y'); ?></p>
</div>
Here you should input a hit counter code.
If you would like to display it in the center of the page, the code will be displayed as the following one:
- Code: Select all
<div class="footer">
<p class="slogan">© <?php echo param('siteName_'.Yii::app()->language).', '.date('Y'); ?></p>
<div align="center">
<!-- counter code here -->
</div>
</div>