Hi,
I need to hide "last registered member" at the bottom of the forum, for every kind of usergroup and/or for some specific usergroup. But for privacy reasons I would really like to be able to hide at all.
Even if I hide the statistics, it doesn't disappear as it's in a different block. Could you tell me how can I do it, please?ย
Thank you,
A.
Try this custom CSS code. Put it in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea. Save, delete all caches:
.wpf-stat-other > span:nth-child(2) {
display: none !important;
}
Actually, If i log in with a role with standard access, I see the last member registered as same role with standard access. If I'm a guest, I see another member as last member (with no access). If I log in as a member who has no access I see "anonymous" as last member registered.
I would like to hide it always, and of course mainly from guest, but from kind of member as well.
Thank you again!
ย
if you still have problems with it, you can remove this line from the footer.php
<span><i class="fas fa-user-plus"></i> <?php wpforo_phrase('Our newest member') ?>: <?php wpforo_member_link($stat['newest_member']); ?></span>
wpforo > wpf-themes > classic > footer.php
best way to do this > Documentation Theme Customization
ย