Title: Annika Backstrom's Replies | WordPress.org

---

# Annika Backstrom

  [  ](https://wordpress.org/support/users/abackstrom/)

 *   [Profile](https://wordpress.org/support/users/abackstrom/)
 *   [Topics Started](https://wordpress.org/support/users/abackstrom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/abackstrom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/abackstrom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/abackstrom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/abackstrom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/abackstrom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] Admin](https://wordpress.org/support/topic/admin-16/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/admin-16/#post-9650844)
 * Hello deruyck! Apologies, but this feature isn’t currently available. I could
   see adding a filter, or putting a user blacklist in the widget config. Would 
   either of these options work for you?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] User name & time out of vertical alignment with avatar](https://wordpress.org/support/topic/user-name-time-out-of-vertical-alignment-with-avatar/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/user-name-time-out-of-vertical-alignment-with-avatar/#post-3980631)
 * Hey ranebo,
 * Are you still having this issue? If so, are you using a stock theme, or something
   custom? Happy to dig into the CSS myself if this is a theme from the official
   repo.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Who's Online] not editable](https://wordpress.org/support/topic/not-editable/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/not-editable/#post-7754435)
 * Yeah, the only really configurable thing is the author link. What else are you
   customizing?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] I need help changing the profile links in this plugin](https://wordpress.org/support/topic/i-need-help-changing-the-profile-links-in-this-plugin/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/i-need-help-changing-the-profile-links-in-this-plugin/#post-3604247)
 * I don’t have BuddyPress set up, but it looks like there’s a bp_core_get_userlink()
   function. Try this:
 *     ```
       function my_userlink( $link, $user ) {
           return bp_core_get_userlink( $user->ID );
       }
       add_filter('wpwhosonline_author_link', 'my_userlink', 10, 2);
       ```
   
 * Untested!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme: P2] Fix .newcomment transparency animation](https://wordpress.org/support/topic/theme-p2-fix-newcomment-transparency-animation/)
 *  [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/theme-p2-fix-newcomment-transparency-animation/#post-2503156)
 * The diff is 8 months old, so it’s likely out of date with the current release
   of P2. Not sure I’ll have any opportunity to fix it in the immediate future.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] [Plugin: Who's Online] Directory location for user profiles???](https://wordpress.org/support/topic/plugin-whos-online-directory-location-for-user-profiles/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [14 years ago](https://wordpress.org/support/topic/plugin-whos-online-directory-location-for-user-profiles/#post-2746896)
 * I assume it’s pretty common in P2 blogs for teams, where the whole point is that
   any user can create a post. That aside, the idea of a “profile” is different 
   from blog to blog, particularly if you’re using something like bbPress.
 * The code sample I included above should work in your theme’s functions.php, though
   it’s hard to prescribe a “best” location. If you want to try adding it somewhere
   and reply again with your specific error, I can help you debug the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] [Plugin: Who's Online] Directory location for user profiles???](https://wordpress.org/support/topic/plugin-whos-online-directory-location-for-user-profiles/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-whos-online-directory-location-for-user-profiles/#post-2746771)
 * I’ve bumped the plugin to version 0.6, adding a filter `wpwhosonline_author_link`
   to allow for customization of this link. By default, it uses [`get_author_posts_url()`](http://codex.wordpress.org/Function_Reference/get_author_posts_url).
 * You can add something like this in a plugin or your theme’s functions.php:
 *     ```
       function mytheme_whosonline_link( $link, $user ) {
           return '<a href="/user/' . $user->user_login . '">' . esc_html( $user->display_name ) . '</a>';
       }
       add_filter( 'whosonline_author_link', 'mytheme_whosonline_link', 10, 2 );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Debug Bar] Not showing up in Admin Bar](https://wordpress.org/support/topic/plugin-debug-bar-not-showing-up-in-admin-bar/)
 *  [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-debug-bar-not-showing-up-in-admin-bar/#post-2489231)
 * `debug-bar.php` is calling `$wp_admin_bar->add_menu()` and specifying a parent
   menu `top-secondary` that does not exist before WordPress 3.3. Change this:
 *     ```
       $wp_admin_bar->add_menu( array(
       	'id'     => 'debug-bar',
       	'parent' => 'top-secondary',
       	'title'  => apply_filters( 'debug_bar_title', __('Debug', 'debug-bar') ),
       	'meta'   => array( 'class' => $classes ),
       ) );
       ```
   
 * To this:
 *     ```
       $wp_admin_bar->add_menu( array(
       	'id'     => 'debug-bar',
       	'title'  => apply_filters( 'debug_bar_title', __('Debug', 'debug-bar') ),
       	'meta'   => array( 'class' => $classes ),
       ) );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Who's Online] [Plugin: Who's Online] Show only online users in widget](https://wordpress.org/support/topic/plugin-whos-online-show-only-online-users-in-widget/)
 *  Plugin Author [Annika Backstrom](https://wordpress.org/support/users/abackstrom/)
 * (@abackstrom)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-whos-online-show-only-online-users-in-widget/#post-2607140)
 * Good call. If you can modify CSS on your site, you could set .wpwhosonline-recent
   and .wpwhosonline-ancient to display: none, in lieu of any code change.

Viewing 9 replies - 1 through 9 (of 9 total)