Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

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

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.