• Hello,

    we have to quite big problems with the plugin. We are a multi-authors site (around 100 now) and we cannot filter them only by username, there must be the visible name so we know who we are filtering. Username is very, very chaotic often and tells us nothing who it is.

    Second issue, we are not able to find action Published. Even if the post is published, it’s just under updated. Why? Where to find it?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • dwheeler

    (@dwheeler)

    This may or may not be helpful.
    I have a site with 100k users.

    I created a link on the bottom of the edit user profile admin screen which will locate all of the activity for a user.

    I put this in my functions.php.

    `function activity_log_link($user){

    $user_id = $user->ID;
    $link = site_url() . “/wp-admin/admin.php?page=activity_log_page&usershow=$user_id”;
    echo (“<h3>Activity Log</h3>”);
    echo (“<a href=\”$link\”>View Activity Log</a>”);

    }
    add_action(‘edit_user_profile’, ‘activity_log_link’, 10, 1);

    Thread Starter keengamer

    (@keengamer)

    Thanks, better than nothing :-). Still not what the author should do…

    Thanks nevertheless.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Username and publish info’ is closed to new replies.