Quote:
Originally Posted by bananalive
1. Vbulletin AdminCP -> New Plugin
Hook location: newthread_form_start
Php code:
PHP Code:
if (in_array($forumid, array(1,2)))
{
header( 'Location: http://www.youriste.com/forums/misc.php?do=form&fid=8' ) ;
}
|
This works fine, now the button "New Thread" roots to the form
but:
Quote:
Originally Posted by bananalive
2. Add the following to the custom php question, do you get the right forumid (46) at the top of the form?
PHP Code:
print_r($form['forumid']);
|
This won't work

The forum-id is correct (it's from my liveforum)
Can you give me a "step by step" instruction, what i have to do, that a dropdown-field with the prefixes of a specified forum will be shown?
The form should create a new thread in forum-id = 46, and the prefixes of this forum sould be listed in the form, cause they are required for a new thread!
kr Chris