forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: alcorjr on July 17, 2016, 06:12:46 pm

Title: Display albums most views first
Post by: alcorjr on July 17, 2016, 06:12:46 pm
Hello guys, how could I make Curve theme display the albums inside each category, from most views to less views?

Thanks,

Alfredo
Title: Re: Display albums most views first
Post by: Αndré on July 18, 2016, 12:06:03 pm
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?
Title: Re: Display albums most views first
Post by: alcorjr on July 19, 2016, 03:33:35 am
Hello Andre,

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

Regards,

Alfredo
Title: Re: Display albums most views first
Post by: Αndré on July 19, 2016, 10:12:27 am
Open include/functions.inc.php, find
Code: [Select]
        'pd' => "{$table_alias}pos DESC, {$table_alias}aid DESC",and below, add
Code: [Select]
        '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
Title: Re: Display albums most views first
Post by: Αndré on July 19, 2016, 10:45:55 am
The above change has been added to cpg1.5.x and cpg1.6.x. Will be included in cpg1.5.44 and higher.