Topic: [Resolved!] Last comments on top

Hi Zachary,
Is there a way to change the order the comments appear to see the latest comments on top instead at the bottom ?
Thanks.
Jim

Re: [Resolved!] Last comments on top

You can make this change quite easily.

In /comments.php, look for the line:

$c_query = "SELECT * FROM ".$prefix."comics WHERE id = '$p'";

You'll want to change that line to:

$c_query = "SELECT * FROM ".$prefix."comments WHERE parentid = '$p' ORDER BY coid DESC";

That should do the trick!

Re: [Resolved!] Last comments on top

Zachary, thanks a lot for your support.

Re: [Resolved!] Last comments on top

It's what I'm here for!