Hiding avatars

Assuming you are running the default templates edit the postbit & postbit_legacy templates and find

<if condition="$show['avatar']"> and change it to
<if condition="$bbuserinfo[userid] AND $show['avatar']">
 
Assuming you are running the default templates edit the postbit & postbit_legacy templates and find

<if condition="$show['avatar']">

and change it to

<if condition="$bbuserinfo[userid] AND $show['avatar']">
 
SpeedFreak said:
Assuming you are running the default templates edit the postbit & postbit_legacy templates and find

<if condition="$show['avatar']">

and change it to

<if condition="$bbuserinfo[userid] AND $show['avatar']">

I said from guests. I don't want to hide the avatars completely.
 
change <if condition="$show['avatar']>

to

<if condition="$show['guest']>
<if condtition="$show['avatar']>

and add an extra </if> tag to where the show avatar </if> tag is
 
Back
Top