Quote:
Originally Posted by Tiryaki
Hello,
I've downloaded, installed this addon and created a test form, but I don't now how to open the form automatically in a forum by clicking on the "New Thread" Button.
what must be done?
Thanks in advance.
-Tiryaki
|
Create plugin with vBulletin Hook Location:
newthread_form_complete with the following php code:
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
Change 1,2,3 for appropriate threadids.