Display albums most views first Display albums most views first
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Display albums most views first

Started by alcorjr, July 17, 2016, 06:12:46 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

alcorjr

Hello guys, how could I make Curve theme display the albums inside each category, from most views to less views?

Thanks,

Alfredo

Αndré

First of all, we're talking about album views and not accumulated pictures views of each album, right? Do you want to display that by default or just as an option for your users?

alcorjr

Hello Andre,

Thanks for your reply.
Yes, I was referring to album views, as part of my settings for all users.

Regards,

Alfredo

Αndré

Open include/functions.inc.php, find
        'pd' => "{$table_alias}pos DESC, {$table_alias}aid DESC",
and below, add
        'va' => "{$table_alias}alb_hits ASC, {$table_alias}aid ASC",
        'vd' => "{$table_alias}alb_hits DESC, {$table_alias}aid DESC",


Now, install the latest version of the hidden features plugin (as described in the docs) and set the album sort order to your needs: http://forum.coppermine-gallery.net/index.php/topic,77314.0.html

Αndré

The above change has been added to cpg1.5.x and cpg1.6.x. Will be included in cpg1.5.44 and higher.