Forum Made Simple FMS
Posted: Wed Jul 30, 2008 4:45 am
Hi All,
Just though I would share a quick fix for Forum Made Simple, to stop guests posting new treads and/or new posts.
Install Custom Content Module.
In \modules\Forum\templates\forum.tpl replace
With:
And \modules\Forum\templates\topic.tpl
With:
Note: There are two links to Reply in topic.tpl make sure you get them both
Just though I would share a quick fix for Forum Made Simple, to stop guests posting new treads and/or new posts.
Install Custom Content Module.
In \modules\Forum\templates\forum.tpl replace
Code: Select all
<div class="forum_link">{$new_topic_img} {$new_topic_link}</div>
Code: Select all
{if $ccuser->loggedin()}<div class="forum_link">{$new_topic_img} {$new_topic_link}</div>{/if}
Code: Select all
<td class="forum_head_table forum_head_reply" colspan="3">{$topic_reply_link}</td>
Code: Select all
<td class="forum_head_table forum_head_reply" colspan="3">{if $ccuser->loggedin()}{$topic_reply_link}{/if}</td>