Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Removing Tooltips in the template files
Avatar
Jan Bosman
Member
Free Members
sp_UserOfflineSmall Offline
Aug 21, 2012 - 11:07 pm

Following other threads about disabling tooltips, I'm trying to remove those that show up when the cursor hovers over a user's avatar. When I look in the thread files, I get to this line:

sp_UserAvatar('tagClass=spPostUserAvatar spCenter&context=user', $spThisPostUser);

But that line's classes deal with the div wrapper, not the link tag or the image within. Is there a way to remove the vtip class from the link tag generated by the hook above?

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Aug 21, 2012 - 11:41 pm

interesting, just that one, eh?  not really set up to do that via template functions, but can be done with some hooks...

in you spFunctions.php file of your theme, add this:

add_filter('sph_BuildAvatarDisplay', 'my_remove_vtip', 10, 2);
function my_remove_vtip($avatar, $userid) {
   $avatar = str_replace ('vtip', '', $avatar);
   return $avatar;
}

should do it.... but have not ested...

remember, we strongly recommend you do this in your own sp theme and not one of ours that will get overwritten on upgrades...

Avatar
Jan Bosman
Member
Free Members
sp_UserOfflineSmall Offline
Aug 26, 2012 - 8:15 pm

Awesome - thank you!

Seems to work like a charm.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Aug 27, 2012 - 5:09 am

You're most welcome.

andy-signature.png
YELLOW
SWORDFISH
Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 620
Members: 17365
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10128
Posts: 79626