PDA

View Full Version : more news click here ???


boomer
12-03-2006, 03:21 AM
On the main LATEST NEWS AREA it has this link which goes to ALL

For more news click here »

How do I get the all page where it displayes articles from most recent back instead of oldest to newest

Or if I can’t do that – how do I get rid of that link

Micha
12-04-2006, 04:48 PM
If you want to remove that link you can edit index.tpl and erase this line of code:
<div class="trHeadline_right" align="right"><a href="{VIEW_ALL}">{LNG_ALL_NEWS} &raquo;</a></div>

boomer
12-04-2006, 05:10 PM
If you want to remove that link you can edit index.tpl and erase this line of code:
<div class="trHeadline_right" align="right"><a href="{VIEW_ALL}">{LNG_ALL_NEWS} &raquo;</a></div>

Thank you Micha. I was starting to think I had no chance of a response :eek:

Does that mean it can NOt be sorted the other way?

Thanks again for your help

Micha
12-05-2006, 09:33 AM
I think that this can be sorted, but it requires some modifications to php code.

themx
01-10-2007, 05:34 PM
Does anyone knows how to to order the "more news" in desc mode?

GusLinares
01-15-2007, 09:19 PM
After some considerable time looking into this I seem to have found a working solution (at least it works on my site www.vox.gi).

In file index.php in the // view_all - int section around line 335

change line:

$query.=" LIMIT $start_from, $results_per_page";

to

$query.=" ORDER BY created DESC LIMIT $start_from, $results_per_page";

Give it a try let me know if it works for you :cool:

Remember to make a backup copy of your index.php before making any modifications. Better careful than sorry.