Quote:
Yesterday at 04:23 PM filburt1 said this in Post #4
Whoops, thought you meant changing the buttons. Just change in newthread.php and showthread.php which template gets eval'ed at the every end, then add a new template. Don't forget to add the template to $templatesused.
|
well i put
Code:
$vbcode_smilies = '';
$vbcode_buttons = '';
if ($foruminfo[allowsmilies]) {
if ($bbuserinfo[showvbcode] && $allowvbcodebuttons)
$vbcode_smilies = getclickysmilies();
eval("\$disablesmiliesoption = \"".gettemplate("newpost_disablesmiliesoption")."\";");
} else {
$disablesmiliesoption="";
}
if ($bbuserinfo[showvbcode] && $allowvbcodebuttons)
$vbcode_buttons = getcodebuttons();
if ($foruminfo[forumid]==2) {
eval("dooutput(\"".gettemplate("newthread_submissions")."\");");
exit;
}
under
Code:
// ############################### start new thread ###############################
and i can alter the newthread template with the new template newthread_submissions in the second forum, one problem i have is that i don't know what i need to do after i've added the needed tables to the database