Log in

View Full Version : Different 'editpost' template for first post in thread


Sho
11-08-2002, 11:55 PM
Hi,

I'm currently developing a role-playing game system for my forums. Every first post in a thread will be part of a story, all other posts are merely comments. So far, I was able to make it happen that the first post in a thread uses a different 'postbit' template. Also, 'newthread' and the whole 'forumdisplay' business are already working.

What I still lack is the ability to use a different 'editpost' template for the first post in a thread. As those first post use different data (new columns in the database, etc.), editing them differs from editing a comment (a comment being a regular post). I have non-rpg forums, too: it would be nice to be able to enable this only for certain forums. Doesn't have to be a funky new page in the Admin Control Panel, source code suffices.

I'm not very good at coding, my brain is empty right now, after working for so many hours. Could anyone please help me? :) 'All I need' is some source code prodiving the described functionality, documented/explained if possible. Please! :classic:

(My English is very cruel, I know. I'm sorry. :()

Logician
11-09-2002, 07:02 AM
edit "editpost.php", find:


eval("dooutput(\"".gettemplate("editpost")."\");");

Replace it as:


if ($isfirst)
{
eval("dooutput(\"".gettemplate("editpostfirst")."\");");
}
else
{
eval("dooutput(\"".gettemplate("editpost")."\");");
}



Create a new template "editpostfirst"..

Enjoy.

Sho
11-09-2002, 12:03 PM
This looks stunningly easy and elegant. :D

Thanks, Logician, gonna try it out now.