Hi thanks for this -
1. Previously I have used a plugin as follows:
if (in_array($forumid, array(53,9999)))
{
header( 'Location:/listings/misc.php?do=form&fid=8' ) ;
}
This linked a particular form to a particular forum and was called from newthread_form_start- presume I should be listing all of the forumids in this plugin that I want the form launched from?
2. Also, in the view form after applying the mods below against the question I just get a list of forums and can't select one? Kind of related to this, can I control what forums can be selected from (want the same as the forums that they form can be launched from in 1 above) and give them different names i.e. not show PW_Dunedin but Dunedin? Also the threadid picker which was previously using a custom question (thanks to you previously) seems to have stopped working - can't see the pick list any more for this. Other info - in the default for the formbody I had set the threadid to 'none' as the custom question then sorted that, but for the post thread I have to specify a forum - not sure if that is the issue?
Thanks.
Quote:
Originally Posted by bananalive
- Edit Form
- Add 'Custom' Question
- Type
- Reference
- PHP Code
PHP Code:
foreach ($vbulletin->forumcache AS $forumid => $forum) { if ($qo['forumid']==$forumid) { $forum['selected'] = ' selected="selected"'; } $answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>"; } $answer .= "</select>";
- Compulsory:
- Form Hook: Form Start:
PHP Code:
$form['forumid'] = $qo['forumid'];
- Form Hook: Before Submit:
PHP Code:
$forumid = $form['forumid'] = $qo['forumid'];
|