View Single Post
Old November 4th, 2009, 10:28 AM   #3 (permalink)
ktmtalk
Member
Verified Customer
 
Join Date: Oct 2009
Posts: 111
Changing default sort from Most Views to Most Recent:

Maybe this will help?

In showcat.php, change this: ($catsortorder : 2)
Quote:
// do the sort box //
$sortoptions = ""; $sortdefault=""; $catrows="";

if ( empty($sort) )
{
$sortparam = ( isset($catsortorder) && $catsortorder > 0 ? $catsortorder : 2 );
}
else
{
$sortparam = $sort;
}
to this: ($catsortorder : 1)

Quote:
// do the sort box //
$sortoptions = ""; $sortdefault=""; $catrows="";

if ( empty($sort) )
{
$sortparam = ( isset($catsortorder) && $catsortorder > 0 ? $catsortorder : 1 );
}
else
{
$sortparam = $sort;
}

.
ktmtalk is offline   Reply With Quote