Hi Admin
I think i found it?
I checked the jmodel.php file and found that the hit is not incremented...
added $hits[] = $id+1; as shown below and it appears to work as you described above
- it will only increment once per logged in user click
- it will increment again if a guest user logs in/out
- it will increment again if the the user logs out/in
//This item has already been seen during this session
if (in_array($id, $hits))
return;
$hits[] = $id;
//Increment the hits
$table = $this->getTable();
if (!$table->hit($id))
return false;
$hits[] = $id+1; // <= added this line here (seems to work??)
$app->setUserState($this->context . '.hits', $hits);
return true;
Regards BTB300