A
by Axenso
1 (1 reviews)
Avatar Tooltip
To show a tooltip with info (member info and Gravatar profile) when you mouseover/click on an avatar.
Tested up to WP 3.5 (Current: 6.8.2)
v1.0.2
Current Version v1.0.2
Updated 12 years ago
Last Update on 26 Mar, 2013
Synced 5 days ago
Last Synced on
Rank
#44,288
—
No change
Active Installs
10+
—
No change
KW Avg Position
N/A
—
No change
Downloads
3.1K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(1 reviews)
Next Milestone 20
10+
20+
18,650
Ranks to Climb
-
Growth Needed
8,000,000
Current Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 10 more installs to reach 20+
Rank Changes
Current
#44,288
Change
Best
#
Active Installs Growth
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Estimated1.0
1 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(100%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.2
- Last Updated
- Mar 26, 2013
- Requires WP
- 3.0+
- Tested Up To
- 3.5
- PHP Version
- N/A
- Author
- Axenso
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,740
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#927
User Switching
200K+ installs
#251
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#255
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#267
Frequently Asked Questions
Common questions about Avatar Tooltip
Because the avatar owner is registered neither to the blog nor to Gravatar. I think some existing gravatars are missing or not shown... We suggest that first of all you read the Gravatar FAQ.
Probably the default jQuery selector (#main ...) is not good for your theme. Look inside your theme html code and search for a class/id of your main content div: e.g. #content or something similar. Then, go in Settings > Avatar Tooltip and set up the new selector. This parent class is useful to avoid that the toolip is shown on undesired avatars (e.g. top Toolbar).
In Settings > Avatar Tooltip you can set up main options (main css theme, position). Then, you can edit axe-avatar-tooltip.css in plugin folder. A tip: copy this file to your theme directory and edit it there. Useful to prevent the loss of styles when you upgrade the plugin.
You can use the sample available at this link: the tooltips will show the user bio (description), a link to user recent posts, the links to social network profiles (as filled in profile by user). Everything taken locallly from blog, nothing from Gravatar profile.
You have some available filter hooks to manage the tooltip text. The following sample adds ugly debug info at the bottom of tooltip: function my_avatar_tooltip_content_after( $text, $user, $md5email, $grav_name, $grav_profile ) { if ( is_object($user) ) { $text .= '<br />USERDATA:<br /><pre style="color:#000">'. print_r( $user, true ) .'</pre>'; } if ( is_array($grav_profile) ) { $text .= '<br />GRAVATAR PROFILE:<br /><pre style="color:#000">'. print_r( $grav_profile, true . '</pre>'); } return $text; } add_filter('axe_avatar_tooltip_content_after', 'my_avatar_tooltip_content_after', 10, 5); The following sample replaces the account list (facebook, twitter...) with a link to Gravatar full profile: function my_avatar_tooltip_content_gravatar_accounts( $text, $md5email, $grav_profile ) { if ( isset( $grav_profile['profileUrl'] ) ) { return '<a href="'. esc_url($grav_profile['profileUrl']) .'" title="'. esc_attr( __('view complete profile on Gravatar', AXE_AT_PLUGIN_DIR) ) .'" target="_blank" rel="nofollow">' . __('view complete profile on Gravatar', AXE_AT_PLUGIN_DIR) .'</a>'; } else { return $text; } } add_filter('axe_avatar_tooltip_content_gravatar_accounts', 'my_avatar_tooltip_content_gravatar_accounts', 10, 3); You can look for more hooks inside plugin code. If you are brave, the function that returns the tooltip text is pluggable and you can replace it at all: create a php file in mu-plugins folder (if the folder does not exists, simply create it) add a new function called axe_at_tooltip_content (look for the orginal function inside plugin code to see how it works) from that moment, the plugin will load your custom function