Quote:
Originally Posted by H3C x Nevz
I love this addon - the one thing I would love is an option to add a Thread Prefix field where users can select which thread prefix if they are posting a thread in a board.
|
You could use custom question for this:
PHP Code:
require_once(DIR . '/includes/functions_prefix.php');
$prefix_options = fetch_prefix_html($form['forumid'], $q["$formbit[id]"], true);
$answer = '<select name="q_' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';