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>