Quote:
Originally Posted by StagKill
One more thing if possible in vB 4.0, when we click new thread in a particular category say introductions it should redirect to a form is that possible?
|
Create vBulletin Plugin with hook location
newthread_form_complete
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
Quote:
Originally Posted by StagKill
Also, when we click new post in a particular thread, lets say "All reports here", it should redirect to another form. Is that possible?
|
Create vBulletin Plugin with hook location
newreply_form_complete
PHP Code:
if (in_array($threadid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}