I also took some time to change the layout from the default, and I noticed something that maybe there's an easier way to do. I wanted a 3-column layout like on the home page, with top 10 and 5 newest on the right, running throughout. To get it, I added the right column code to most of the templates (tpl), then added the functions for generating the 10 and 5 to the template processing in each of the corresponding scripts, like:
Code: Select all
"writeTopTenHeader" => $PMF_LANG["msgTopTen"],
"writeTopTenRow" => generateTopTen(),
"writeNewestHeader" => $PMF_LANG["msgLatestArticles"],
"writeNewestRow" => generateFiveNewest()
(You can see what I mean about the 3 colums by clicking through some pages: http://freshlocalorganic.com)
Also, I'd mentioned a while ago about being able to reorder the FAQs. I noticed this is now being considered for 1.6. I find it pretty important, because there are usually FAQs that make sense grouped together, and some that should be at the beginning or before others. I've been manually swapping ID #s in the database to reorder.
Anyhow...thanks again!!!