Quote:
Originally Posted by YLP1
I'm confused.....should the changes to the journal_jounalpage.php from yesterday stay the same with the new changes? If not, what changes are needed for this page?
Thanks in advance.
|
Remove the changes that were made to the
journal_journalpage template, they're no longer needed..
Quote:
Originally Posted by YLP1
I have another issue with the journal entry dates....how would I cause the most recent entry of the journal to appear first (reverse the order of entries)?
Thanks in advance...this is driving me nuts.
|
In the
journal.php file, search for:
Code:
$fentries = $DB_site->query("
In this query, find:
Code:
ORDER BY entrydate ASC
Replace it with:
Code:
ORDER BY entrydate DESC
You're done.. The entry # will be incorrect, but since there's a bug with this in vBJournal 1.0.0 anyway it's not worth reversing. AN-net has said that he's fixed it in 2.0.0 (and I've fixed it on my customised version).