How can I sort the thumbnails by user defined (custom) fields?

0
Posted

How can I sort the thumbnails by user defined (custom) fields?

0

• Edit /includes/functions.inc.php change $sort_array = array(‘na’ => ‘filename ASC’, ‘nd’ => ‘filename DESC’, ‘da’ => ‘pid ASC’, ‘dd’ => ‘pid DESC’); to $sort_array = array( ‘na’ => ‘filename ASC’, ‘nd’ => ‘filename DESC’, ‘da’ => ‘pid ASC’, ‘dd’ => ‘pid DESC’, ‘f1a’ => ‘user1 ASC’, ‘f1d’ => ‘user1 DESC’, ‘f2a’ => ‘user2 ASC’, ‘f2d’ => ‘user2 DESC’, ‘f3a’ => ‘user3 ASC’, ‘f3d’ => ‘user3 DESC’, ‘f4a’ => ‘user1 ASC’, ‘f4d’ => ‘user1 DESC’ ); • Edit /themes/yourtheme/theme.php • change // The sort order options are not available for meta albums if ($sort_options){ $param = array( ‘{ALBUM_NAME}’ => $album_name, ‘{AID}’ => $aid, ‘{PAGE}’ => $page, ‘{NAME}’ => $lang_thumb_view[‘name’], ‘{DATE}’ => $lang_thumb_view[‘date’], ‘{SORT_NA}’ => $lang_thumb_view[‘sort_na’], ‘{SORT_ND}’ => $lang_thumb_view[‘sort_nd’], ‘{SORT_DA}’ => $lang_thumb_view[‘sort_da’], ‘{SORT_DD}’ => $lang_thumb_view[‘sort_dd’], ); to // The sort order options are not available for meta albums if ($sort_options){ $param = a

Related Questions