We’re trying to get a rough guess on the number of times a particular entry has been viewed. Normally the {view_count_one} would work perfectly for this but in my case the count is increasing by 3 instead of 1. Research tells me it has something to do with embedded javascript or something. The thing is is that we don’t need an exact count, just something close so I thought if I could just get the count to divide by three I’d be golden. I’ve got PHP enabled and set to input. I tried:
<?php
$num_view = {view_count_one} / 3;
?>
Article viewed <?php echo $num_view ?> times.
but I get an unexpected curly bracket error. Is there an easy way to achieve what I’m aiming for?
