Quote:
Originally Posted by HypedGaming
Great mod.. but when I enable the "tops" on all pages settings the WYSIWYG breaks the layout and expands the right table. (I would show you but it only does it when the user is logged in)
I guess this could be fixed by disabling comments but I would love to keep the comments and tops on all pages simultaneously, if possible.
|
You can't fix that at the moment as the WYSIWYG editor has a default width. For v6 we will be switching to the small Quick Reply type editor.
Quote:
Originally Posted by maidos
|
You can use template conditionals:
HTML Code:
<if condition="is_member_of($bbuserinfo, 6)">
If in group 6, show this...
<else />
...or else, show this.
</if>
Easier:
HTML Code:
<if condition="is_member_of($bbuserinfo, 6)">
If in group 6, show this...
</if>
Multiple groups:
HTML Code:
<if condition="is_member_of($bbuserinfo, 6, 9, 10)">
If in group 6, show this...
<else />
...or else, show this.
</if>