bananalive |
05-11-2010 08:51 PM |
Quote:
Originally Posted by heyzeus909
(Post 2034678)
In a specific forum, I would like to have the "Post New Thread" button link to the Easy Form I have created. This would force the first post of any new threads in that forum to have to fill out the Easy Form questionnaire.
Is this possible? What would the template edits be?
Could this be implemented through vb Options in later releases of this fine hack?
Thanks.
|
It's really easy just using one plugin:
Title : can be what you want
Hook Location : newthread_form_complete
Plugin PHP Code:
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
|