Quote:
Originally Posted by Za4a Tuner
Hello,
i have two question to this mod:
1.)
How can i link the "new thread"-button of a forum to a form?
In a forum with the ID = 46 the "new thread" should be replaced by a form with the ID = 4
If someone like to create a new thread, he should use the form nr. 4, wich "Post a new Thread" in the forum.
2.)
The forum above MUST have a prefix, but not always the same prefix => users should be able to use a prefix that fits to the form.
I created a custom question with the following php-code inside:
PHP Code:
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
if (!$form['forumid'])
{
$form['forumid'] = 46;
}
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
The question will be shown on the form, but there are no prefixes displayed! How can i get it running?
Can anyone give me a help please?
kr Chris
|
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' ) ;
}
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']);