MyBB Community Forums

Full Version: Hide Avatars from Guests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

How do I hide Avatar from Guests, Banned Users(They can in my case still login and see some forums) and a Usergroup I have for users who are still in the process of being accepted to the Community?

I was sadly not able to find a plugin for that.
Is there a simple Core Edit I could do?
You can use php in templates plugin for this:

<if $mybb->user['uid'] then>Put whatever you want to hide from guests here</if>
(2019-12-04, 06:47 PM)Ashley1 Wrote: [ -> ]You can use php in templates plugin for this:

<if $mybb->user['uid'] then>Put whatever you want to hide from guests here</if>
Indeed I have this Plugin.
Didn't think of that method to be honest.

So I just have to finde the approximately 1000 Templates containing an Avatar and put that around it.
And then... I have to do the same with all my 1000s of Templates.
Thats gonna be a lot of work.