Forum Made Simple FMS

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Post Reply
aucomp
New Member
New Member
Posts: 6
Joined: Wed Apr 09, 2008 3:49 am

Forum Made Simple FMS

Post 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
Post Reply

Return to “Modules/Add-Ons”