HELLO ,
I Use this code to hide the content of post for a specific post for a specific member , And works well .
but if I want to hide the
full post ,What
condition should I use?
HOOK : postbit_display_complete
Code:
if ($vbulletin->userinfo['userid']==1 AND $this->post['postid']==35)
{
$replacer = "You can not see the content";
$this->post['message'] = str_replace($post[message],$replacer,$this->post['message']);
}