XF 1.2 Member Card and Member Profile

Amaury

Well-known member
Member Card:
Is it possible remove "Gender, Age, from Location" and move them down with the rest of the things.

It would look like this: Joined: X Messages: X Likes: X Points: X Gender: X Age: X Location: X

And, of course, they'll only be shown if the user has filled in those fields in their preferences.

Member Card.webp

Member Profile:
Same as the above, but adding them to the sidebar instead.
Joined: X
Messages: X
Likes: X
Points: X
Gender: X
Age: X
Location: X

Member Profile.webp
 
Add the following code to Extra.css to achieve your first request:
Code:
.xenOverlay.memberCard .userInfo .userTitleBlurb .userBlurb {
display: none;
}
The second one would require some template edits.
 
Top Bottom