Hi,
adding to the response:
Plugin & Products System -> Add New Plugin:
Product: Thread Stencil
Hook Loioncat: newreply_form_start
Title: Thread Stencil
Execution Order: 5
Plugin PHP Code:
Code:
//check if forums is supposed to have stencil or not
if ($foruminfo['stencilon'])
{
// Write stencil
// Replace [username]
$foruminfo['stenciltitle'] = str_replace("[username]",$vbulletin->userinfo['username'],$foruminfo['stenciltitle']);
$foruminfo['stencilmsg'] = str_replace("[username]",$vbulletin->userinfo['username'],$foruminfo['stencilmsg']);
// Replace [date]
$foruminfo['stenciltitle'] = str_replace("[date]",date("dS F Y"),$foruminfo['stenciltitle']);
$foruminfo['stencilmsg'] = str_replace("[date]",date("dS F Y"),$foruminfo['stencilmsg']);
$newpost['title'] = $foruminfo['stenciltitle'];
$newpost['message'] = $foruminfo['stencilmsg'];
}