Regarding the below posts.
Im trying to do the same thing with no luck so see if I can explain.
Section created called for sale and I need the post new thread button to go to the form I've created and once filled it the for sale advert is created as a thread in the sale section.
What do I need to edit, change etc?
Been away from VB for a while and lost the will to think
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' ) ;
}
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']);
|
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
|
Quote:
Originally Posted by Za4a Tuner
This works fine, now the button "New Thread" roots to the form
but:
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
|
Quote:
Originally Posted by bananalive
Try this php code instead:
PHP Code:
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
$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>';
|
Quote:
Originally Posted by Za4a Tuner
THANKS! That did the job, works fine
Do you have a paypal-account?
If yes, please let me know your mailadress, than i will donate a few pounds for your addon and the great support
|