Exclude admin from post view count

Posted in: Newspaper
Post count: 34

Hi, is there a css code that can establish this rule in the theme? I would like to see a real post view count of may website visitors, but right now, my views (during edit and re-edits) are being counted alone with the visitors.

best,

SoNOwner

Post count: 6535

Hi

To achieve that you need to edit td_page_views.php file and add a condition here: http://screencast.com/t/yWyfr5HIo9zg

if (get_current_user_id() == 1){
return;
}

This condition will work only if your account was the firs account made on the site. If you have a different user id go to users section, hover over your user and replace the number from condition with your user id: http://screencast.com/t/EgqrTH1a

Hope this helps!
Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.