Hello,
I just installed the wpDiscuz User & Comment Mentioning add-on, and now I see a (@username) tag to the right of where the commenter's Username already appeared.
So now its: Avatar -> Username -> (@username).
How can I remove this newly added (@username) tag? It's unnecessary and in most cases simply duplicating of the first Username.
Hi @orestto,
This comes from the wpDiscuz User & Comment Mentioning addon. This is the nickname that commenters use in comments to mention other users.
In any case if you want to disable it, please put this CSS code in the Top Admin Bar > Customize Menu > Additional CSS Tab > Custom CSS Code textarea. Save it and delete all caches:
#wpdcom .wpd-comment .wpd-comment-wrap .wpd-comment-author span.wpducm-user-nicename{
display:none!important;;
}
That css didn't work but this did:
.wpd-user-nicename {
display:none!important;;
}