Page 1 of 1

Invertion of posts order

Posted: 01 May 2011, 20:12
by ainno
hi, I'm using Joomla 1.5, Phoca GB 1.4.3, italian language
I'd like to invert the post order in frontend (the first posted must be always the first visible, as in Facebook, i.e.)
Is it possibible? Tried to change "parameters", but I did not find the right one.

thanks

A.

Re: Invertion of posts order

Posted: 02 May 2011, 23:12
by Jan
Hi, this needs to be customized in the code, so the ordering will be changed:

components/com_phocaguestbook/models/phocaguestbook.php

cca line 134 -

Code: Select all

order by ordering DESC
change to

Code: Select all

order by ordering ASC
e.g.

Jan

Re: Invertion of posts order

Posted: 05 May 2011, 01:05
by ainno
great!!
many thanks!
A.

Re: Invertion of posts order

Posted: 09 May 2011, 22:03
by Jan
Ok