if you mean ID 1. Here is a code:
Find:
CODE
function edit_button($post_id, $poster, $post_date)
{
global $ibforums;
if ($ibforums->member['id'] == "" or $ibforums->member['id'] == 0)
{
return "";
}
add after:
CODE
if ($poster['id'] == '1') {
if ($ibforums->member['id'] == '1') {
return "<a href="{$this->base_url}act=Post&CODE=08&f={$this->forum['id']}&t={$this->topic['tid']}&p={$post_id}&st={$ibforums->input[st]}"><{P_EDIT}></a>";
}
else {
return "<a href="javascript:alert('You cannot edit this post.');"><{P_EDIT}></a>";
}
}
Above is 'no edit'.
this is 'no delete'
find:
CODE
function delete_button($post_id, $poster)
{
global $ibforums, $std;
if ($ibforums->member['id'] == "" or $ibforums->member['id'] == 0)
{
return "";
}
add after:
CODE
if ($poster['id'] == '1') {
if ($ibforums->member['id'] == '1') {
return "<a href="javascript:delete_post('{$this->base_url}act=Mod&CODE=04&f={$this->forum['id']}&t={$this->topic['tid']}&p={$post_id}&st={$ibforums->input[st]}&auth_key=".$this->md5_check."')"><{P_DELETE}></a>";
}
else {
return "<a href="javascript:alert('You cannot delete this post.');"><{P_DELETE}></a>";
}
That's found in
sources/Topics.phpSomeone requested this on IF, and posted the above code. Just copied it.