I'm interested in getting rid of those notices as well.
Also, in this part of the mod:
Code:
REDIRECT OPTIONS:
0 - thank you message (thread, reply, pm, or email)
1 - redirect to post (thread or reply)
2 - redirect to thread (thread only)
3 - redirect to forum (thread only)
4 - redirect to editpost (thread or reply)
Feel free to change the thank you message if you choose option 0
$redirectoption = "0";
Is it possible to have it show a note AND have it redirect? Much like the normal functionality of vBulletin, how after you post, it tells you thanks, then redirects you.
Anyone?
Another issue I'm having is that this mod is creating a bunch of threads with the same title. How would I go about pulling the title of the thread from a text box that the user fills out in the form?
EDIT: so I figured there's got to be a way to do this. If I create a question that asks the user to give a basic description of the bug they have found in the software I might be able to pull the answer to that question and have it be the title to the thread. I've created the question, but how do I have it call that answer to name the thread?
EDIT2: Found the answer after reading through the thread:
Quote:
Originally Posted by ChrisBaktis
I have my form posting as a thread - the members enter $normalanswer1 with the username of someone they trade with...when the form posts I want the title of the thread created to be the username of the person posting the form and $normalanswer1...
on the old version I think I did '$bbuserinfo[username] / $normalanswer1' but when I do that in the $posttitle part now the $bbuserinfo doesnt work...any suggestions?
|
and the answer:
Quote:
Originally Posted by R.Caldwell
this code should work just fine in the hack code itself.
PHP Code:
$posttitle = "$bbuserinfo[username]";
|
Only, in my instance, I used the following:
PHP Code:
$posttitle = "$normalanswer2";
So far, this mod has been great!