[TIP] Bandwidth savings tip
by
17 Dec 2004
For those of us with big boards, and with avatars enabled, here is a small piece of code I added to my postbit (in my case postbit_legacy) template, which makes it so that guests do not see avatars. FIND: ------ <if condition="$show['avatar']"> ABOVE ADD: ------------ <if condition="is_member_of($bbuserinfo, 1)"> <else /> THEN FIND (couple lines down): ------------------------------- </div> </if> BELOW ADD: ------------- </if> thats it... simple yet effective. |