Album list on home page Album list on home page
 

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

Album list on home page

Started by allvip, June 01, 2014, 01:17:38 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

allvip

Is there any code to make coppermine have a diffrent number of albums on the home page?
I want to show 12 albums  per page and on the home page only to show 30 albums per page.

Αndré

I just had a look at your gallery and this topic seems to be already solved?

allvip

No.I just removed the albums from the home page.

Αndré

Sorry, I mistakenly thought those big block of images are your 30 albums, but that's actually the "lastup" meta album.

It should work if you add the following code block somewhere (i.e. outside of any function) in your theme's theme.php file:
if (!$superCage->get->keyExists('cat') || $superCage->get->getInt('cat') == 0) {
    $CONFIG['albums_per_page'] = 30;
}

allvip