• I’ve tested many popular posts plugins and where others fall short, Top 10 excels. What I need out of a popular posts plugin is automation and Top 10 does that best. The customization of this one is superior to others as well.

    I would like to exclude logged in users from contributing to the views, and maybe there’s a way, but it’s not a huge issue.

    For those saying this plugin is slowing their site, I’m not saying that it’s not possible, but I’m scoring a 93 at Pingdom. I can say for sure this plugin is not slowing my speed.

    This plugin is also well supported. The developer, Ajay, is fast to respond, and is helpful and friendly.

Viewing 1 replies (of 1 total)
  • Plugin Author Ajay

    (@ajay)

    Thank you for the detailed and 5-star review.

    For not allowing other logged in users, you could either add a function or edit the tracker.php file.

    For the function, you could potentially add this (untested):

    
    function stop_tracking_users( $ajax_tptn_tracker ) {
      if ( is_user_logged_in() ) {
         $ajax_tptn_tracker[ 'activate_counter' ] = 0;
      }
      return $ajax_tptn_tracker;
    }
    add_filter( 'tptn_tracker_script_args', 'stop_tracking_users' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Great Plugin and Support’ is closed to new replies.