Forum Replies Created

Viewing 1 replies (of 1 total)
  • Great, thanks!

    I was looking for a way to sort my galleries by title (not by ID) on the album page;

    If you want your galleries to be sorted by title on the album page, just do this;

    Edit file nextgen-gallery\lib\ngg-db.php as follows:

    at line 317

    Change from

    ‘$album->sortorder = serialize( $wpdb->get_col(“SELECT gid FROM $wpdb->nggallery”) );’

    To

    ‘$album->sortorder = serialize( $wpdb->get_col(“SELECT gid FROM $wpdb->nggallery ORDER BY title DESC”) );’

Viewing 1 replies (of 1 total)