Page 1 of 1

Forum Made Simple FMS

Posted: Wed Jul 30, 2008 4:45 am
by aucomp
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

Code: Select all

<div class="forum_link">{$new_topic_img} {$new_topic_link}</div>
With:

Code: Select all

{if $ccuser->loggedin()}<div class="forum_link">{$new_topic_img} {$new_topic_link}</div>{/if}
And \modules\Forum\templates\topic.tpl

Code: Select all

<td class="forum_head_table forum_head_reply" colspan="3">{$topic_reply_link}</td>
With:

Code: Select all

<td class="forum_head_table forum_head_reply" colspan="3">{if $ccuser->loggedin()}{$topic_reply_link}{/if}</td>
Note: There are two links to Reply in topic.tpl make sure you get them both