Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] Hiding Display and Nicknames

3 Posts
2 Users
1 Reactions
850 Views
Posts: 2
Topic starter
(@killminus9)
New Member
Joined: 3 years ago

Hi, I've seen a number of posts on this topic, but I haven't seen any with my specific ask or a solution to my need.  I've tried various combinations of CSS code but haven't come up with the right combination.  So here is what I need to do.  I've created a forum for people to ask questions; I'm using the Q&A Layout.  The questions need to be posted anonymously, so I don't want to display a username, Nickname, or Avitar.  Pretty much anything that could identify a user needs to be hidden from the front end.  

I've attached an image of the areas, I've identified that need to be hidden.  In an ideal world, the Last Post by XXX, would say something more like, Last Post X time ago.

Thank you in advance for any help the community can provide.

Topic Tags
2 Replies
Chris
Posts: 3611
(@chris)
Famed Member
Joined: 4 years ago

Hi @killminus9,

Try this CSS Code:

#wpforo #wpforo-wrap .wpf-post-head-top .wpf-post-info div a:last-child,
#wpforo #wpforo-wrap .wpforo-post-head .wpforo-topic-head-wrap .wpf-topic-more-info,
#wpforo #wpforo-wrap .wpf-post-stat .wpf-post-stat-box.wpf-pb-more,
#wpforo #wpforo-wrap .wpforo-post.wpfcl-1 .wpforo-post-author,
#wpforo #wpforo-wrap .wpforo-last-topic-title .wpforo-topic-author {
    display: none !important;
}
#wpforo #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-content-top,
#wpforo #wpforo-wrap .wpfl-3 .wpforo-post .wpf-left{
    border: none
}
Posts: 2
Topic starter
(@killminus9)
New Member
Joined: 3 years ago

Awesome, worked like a champ!  Thank you!