Thanks Ramon, you guys are great. Let me explain how to add a simple "view counter" to each ad page so that other people with little PHP knowledge can also benefit:
1) Edit \oc-centent\themes\Modern\item.php file with an editor (Notepad, Notepad++ or any other that you use to edit PHP codes)
2) Add the following code to where you would like to have the counter displayed
<div id="Item hit counter">
<?php _e('This page has been viewed', 'modern') ; ?>
<?php echo osc_item_views(); ?>
<?php _e('times', 'modern') ; ?>
<BR> <BR>
</div>
3) Save and upload item.php file back to your web server.
And this is it...