Plugin info

Total downloads: 6,826
Active installs: 10
Total reviews: 2
Average rating: 4.5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 1/24/2013 (4724 days ago)
Added to WordPress: 6/26/2012 (13 years old)
Minimum WordPress version: f
Tested up to WordPress version: f
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4724 days ago • 2 reviews

22/100

Is BuddyPress Hovercards abandoned?

Possibly abandoned (last update 4724 days ago).

Compatibility

Requires WordPress: f
Tested up to: f
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Gravatar Enhanced – Avatars, Profiles, and Privacy
Rating 5.0/5 (3 reviews)Active installs 60,000
Gravatar Hovercards
Rating 0.0/5 (0 reviews)Active installs 30
Gravatar Hovercards
Rating 5.0/5 (1 reviews)Active installs 20
Extended Gravatar
Rating 0.0/5 (0 reviews)Active installs 10

Description

This plugin adds hovercards (like on WordPress,com (Gravatar), Twitter, Facebook, Google+, etc.) to BuddyPress. Whenever a user hovers over a user avatar, the hovercard shows up.

Hovercards are completely themable by adding a hovercard.php template to your (child) theme.

Based on imath’s blogpost on BuddyPress xprofile hovercards and uses the jQuery Tipsy library and Rrrene’s hovercards.

Installation

  1. You can download and install BuddyPress hovercards using the built in WordPress plugin installer. If you download BuddyPress Hovercards manually, upload the whole folder to “/wp-content/plugins/”.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

If you want to add a custom hovercard, or change the displayed fields, copy ‘/bp-hovercards/templates/hovercard.php’ to the root of your (child) theme and edit it there to prevent it being overwritten at an update.

Frequently Asked Questions

How can I disable hovercards for certain avatars?

Hovercards are disabled for some avatars already, namely the profile badge and the profile header. To add more disabled elements, you can use the folowing filters:

‘bphc_parent_filter’ to disable hovercards for all children of a certain element id or class, e.g.:

function disable_bphc_by_parent( $filter ) {
    return $filter . ', .children-of-this-class';
}
add_filter('bphc_parent_filter', 'disable_bphc_by_parent');

‘bphc_element_filter’ to disable hovercards for avatar img tag with this class/id, e.g.:

function disable_bphc_for_elements ( $filter ) {
    return $filter . ', .avatars-with-this-class, #avatar-with-this-id'
}
add_filter('bphc_parent_filter', 'disable_bphc_by_parent');

Can I make my own hovercard?

Yes. If you want to add a custom hovercard, or change the displayed fields, copy ‘/bp-hovercards/templates/hovercard.php’ to the root of your (child) theme and edit it there to prevent it being overwritten at an update.

Review feed

No reviews available

Screenshots

  1. Example hovercard using the template included in the plugin.

    Example hovercard using the template included in the plugin.

Changelog

1.1.3

  • Fix that avatars would show the hovercard as an alt-text in certain cases

1.1.2

  • Better compatibility with BP Social Theme

1.1.1

  • Disable hovercards for profile badge and profile header (thanks Sandy)
  • Added filters ‘bphc_parent_filter’ and ‘bphc_element_filter’ to disable hovercards for certain avatars

1.1

  • Hovercards are now not reloaded when they’re still visible
  • Never show two hovercards at the same time
  • Hovercards were loaded during AJAX calls (when the mouse was no longer on)

1.0

  • Fixed that non-logged in users got a stylish ‘0’ instead of the hovercard
  • Hovercards are now reloaded on all AJAX request (except BP Live Notifications)

0.9.6

  • Hovercards now refresh anytime something is loaded in with AJAX
  • BP 1.6 Beta 1 & 2 compatibility

0.95

  • Fixed ‘Load More’-bug. Users of the WP admin bar would not get hovercards on posts loaded in using the ‘Load More’ button.

0.9

  • Initial upload