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;
}
|
.