Currently my "Display Latest News" module is ordered by creation date. I am trying to make it order the news by publication date.
I have been trying to modify the module file, specifically changing:
Code:
. "\n ORDER BY a.created DESC"
(line 339 or something like that)
to:
Code:
. "\n ORDER BY a.publish.up DESC"
But it didn't work. Anyone know how to do this?