Quote Originally Posted by clydejones View Post
On the display all testimonial page they are ordered by the date added and then the testimonial title.

something added yesterday would be shown after something added today (which is a last in, last displayed display)
I know it's there but I just don't see it. In the tpl_display_all_testimonials_default, I find a commented out line like that below, so that's not it, but in the

tpl_testimonials_manager_all_testimonials_default,

I find this:

$testimonials_query_raw = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by date_added DESC, testimonials_title ";

so I tried changing it to:

$testimonials_query_raw = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by testimonials_title, date_added DESC";

but that doesn't do anything.

Even tried removing the DESC with no success and even changed it to ASC.

So I am either in the wrong place or I'm not getting the message.