Quote:
Originally Posted by glen290
Is there any way of setting it so when you click on the gallery tab, it goes straight to latest albums, rather than categories ?
|
Right now no, I'll look at making it an option to open to one of the main page select options in the next version.
For now though, if you want to hack it...
Edit the instance and set it to display images instead of categories
open dbtech/gallery/modules/gallery/actions/main.php
Where it says
PHP Code:
$sort = $vbulletin->GPC['sort'] ? $vbulletin->GPC['sort'] : 'latest';
change it to
PHP Code:
$sort = $vbulletin->GPC['sort'] ? $vbulletin->GPC['sort'] : 'album';
Dylan