inherit
258123
0
May 15, 2019 2:23:19 GMT -8
lolbroek
9
March 2019
lolbroek
|
Post by lolbroek on Apr 2, 2019 8:00:52 GMT -8
i want to remove the @ admin from the shoutbox and member page but i cant find the right code any help would be great would be nice if it shows the name not admin my forum
|
|
inherit
76165
0
Jul 1, 2018 21:15:48 GMT -8
Beckea
Relax with a good book!
933
April 2006
purplescraps
|
Post by Beckea on Apr 2, 2019 19:52:54 GMT -8
That is a tooltip when you hover over the user it will show their username. If you stop hovering it will go away.
|
|
inherit
258123
0
May 15, 2019 2:23:19 GMT -8
lolbroek
9
March 2019
lolbroek
|
Post by lolbroek on Apr 2, 2019 21:12:02 GMT -8
i know that thx but i want to remove the tool tip if its possible
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Apr 2, 2019 21:19:39 GMT -8
i know that thx but i want to remove the tool tip if its possible This may be possible, I'd have to look into it. However, keep in mind that, unless you've removed the username column on your Member's page, members will still be able to see that "Anonymous" is still the admin account. Also, anyone can run a user search on a posting page (via the Insert User Link button) and it'll reveal the username of "Anonymous". So the real question is, is it really worth the effort to remove a tooltip when there are easy ways to get around it? It's up to you, just thought you should know that you're not really going to be hiding who "Anonymous" is just by removing the tooltip.
|
|
inherit
258123
0
May 15, 2019 2:23:19 GMT -8
lolbroek
9
March 2019
lolbroek
|
Post by lolbroek on Apr 3, 2019 8:03:54 GMT -8
if you can help that would be great Lynxand yes i did remove the username column on the member page and i also changed the admin name in the profile it now says Anonymoes so i need the tool tip to be gone to
|
|
inherit
258123
0
May 15, 2019 2:23:19 GMT -8
lolbroek
9
March 2019
lolbroek
|
Post by lolbroek on Apr 4, 2019 12:11:08 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 4, 2019 22:00:01 GMT -8
Easiest would probably be to create a pointer-events:none CSS rule to target the user link (I assume you want to target a specific user rather than every user on the forum)
/* Make user-1 link sinfully unclickable with no jHover */ .user-link.user-1 { pointer-events:none; }
|
|
inherit
258123
0
May 15, 2019 2:23:19 GMT -8
lolbroek
9
March 2019
lolbroek
|
Post by lolbroek on Apr 5, 2019 8:36:07 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 5, 2019 8:58:12 GMT -8
You're welcome Just a word of caution regarding the use of this and it interfering with the ability to @ tag someone on the forum. There's a proboards script that allows you to hold the ALT key (some browsers also require SHIFT in tandem) and click on a username to easily put their tag in the reply box but this will most likely defeat that script since you effectively cannot click on the username link. You also just tagged me as @ chris but a quick hover would have revealed that is not my username and that feature is also disabled with the use of this CSS rule. If that is the intent then all the better but just note that if used too broadly you will be affecting a feature of convenience for your forum members.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Apr 5, 2019 16:12:04 GMT -8
Sorry for not getting back sooner, as I am not always able to get online everyday. It looks like Chris beat me - which is certainly fine, as his solution is a LOT more elegant and simpler than what I came up with. Thanks, Chris!
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Apr 6, 2019 4:55:33 GMT -8
if you can help that would be great Lynxand yes i did remove the username column on the member page and i also changed the admin name in the profile it now says Anonymoes so i need the tool tip to be gone to Just to note, going to "Anonymous'" profile page will still show admin as the username - since usernames cannot be changed once registered.
|
|