XF 2.2 How do I remove user-banner (ladder image) from user profile section

Rigo

Active member
So I created some user ladders which contain an image.
Screenshot 2022-10-04 at 07-42-39 User title ladder The Fig Spot - Admin control panel.webp
It looks good in the forums, like this:
Screenshot 2022-10-04 at 08-03-46 South-East Fig Growers.webp
But I do not want it to show in the users profile when you hover over their name or when you go to their profile page. How can I keep them from showing on those two areas?
banner1.webpbanner2.webp
 
For the first one try this into your extra.less template
Less:
.memberTooltip {
    .userTitle {
        display: none;
    }
}
And for the second one try this
Less:
[data-template="member_view"] {
    userTitle {
        display: none;
    }
}
 
For the first one try this into your extra.less template
Less:
.memberTooltip {
    .userTitle {
        display: none;
    }
}
And for the second one try this
Less:
[data-template="member_view"] {
    userTitle {
        display: none;
    }
}
The first one worked, thanks.
hover.webp
The second one did not unfortunately.
Screenshot 2022-10-10 at 09-44-20 Iamthefigman.webp
 
This is one of the reasons I still prefer XF over IPS. Go over to the IPS site and good luck on getting any help like this. Of course, most of the admins that participate over there can't even find the necessary CSS codes to address an issue.
 
Top Bottom