Quote:
Originally Posted by DaPro
Question: Anyway we can replace the new thread link with a link to the form for specific forums? Would be nice to have so that we make sure users submit the form instead of making a post on mistake.
|
How can I Re-direct/ force users to submit form when they click new thread?
- Create plugin newthread_start
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
Change 1,2,3 for appropriate forumids.