View Single Post
Old June 29th, 2004, 08:04 PM   #6 (permalink)
klisis
Member
Verified Customer
 
Join Date: Jun 2002
Posts: 42
Well, I looked at the source code.
Find showgallery.php and look at line 110

You will find following.
Code:
Content visible to verified customers only.
And from photopost database, you have this,

Quote:
2 Latest ORDER BY disporder,date DESC
3 Most Views ORDER BY disporder,views DESC
1 Most Active ORDER BY disporder,lastpost DESC
4 Most Popular ORDER BY disporder,rating DESC, views DESC
6 Random ORDER BY disporder,RAND()
5 Least Popular ORDER BY disporder,rating,views
7 Image Name ORDER BY disporder,bigimage
8 Title ORDER BY disporder,title
Replace ( isset($catsortorder) && $catsortorder > 0 ? $catsortorder : 1 ) with the sort # you want.
For an example, in my case, I wanted "Image name" to be default.
So, my code was,

Code:
Content visible to verified customers only.
Not a complete solution for you, but it may help somewhat.

Last edited by klisis; June 29th, 2004 at 08:06 PM.
klisis is offline   Reply With Quote