You dont want the guests to view your posts? do the following tutorial:
ACP -> LOOK & FEEL -> Topic View -> edit function RenderRow.
find:
replace with:
good luck.
ACP -> LOOK & FEEL -> Topic View -> edit function RenderRow.
find:
<!-- THE POST {$post['pid']} -->
<div class="postcolor" id='post-{$post['pid']}'>
{$post['post']}
{$post['edit_by']}
<if="$post['post_edit_reason'] != ''">
<div class='post-edit-reason'>
{$this->ipsclass->lang['reason_for_edit']}: {$post['post_edit_reason']}
</div>
</if>
replace with:
<if="$this->ipslass->member['id']">
<!-- THE POST {$post['pid']} -->
<div class="postcolor" id='post-{$post['pid']}'>
{$post['post']}
{$post['edit_by']}
<if="$post['post_edit_reason'] != ''">
<div class='post-edit-reason'>
{$this->ipsclass->lang['reason_for_edit']}: {$post['post_edit_reason']}
</div>
</if>
<else />
<b>Hello Guest, you have to login or register to read our topics</b>
</if>
good luck.













