![]() |
|
How to setup number of albums per page - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: How to setup number of albums per page (/thread-7485.html) |
How to setup number of albums per page - paparazzo - 2010-08-17 Sorry if I'm posting something so obvious, but I have been searching the forum for the last 2 hours, and I haven't been able to find the answer. I have album with 2 pages. The first page has 6 albums and second page has 2 albums. I would like to have only one page (gallery) with all 8 albums featured. What files I need to edit and how? Thanks a log! How to setup number of albums per page - kagutsuchi - 2010-08-17 Depends on the theme your site is using. If it's using How to setup number of albums per page - paparazzo - 2010-08-17 I'm using default theme, but I took a look at that document, but am unable to understand what file i need to edit and how. Please help me if you can with more detailed explanation. How to setup number of albums per page - paparazzo - 2010-08-17 What should I change here?
How to setup number of albums per page - paparazzo - 2010-08-17 Never mind, I solved it. Just in case someone else is stupid like myself, I changed "$albcount = max(1, getOption('albums_per_page'));" to "$albcount = max(1, getOption('8'));" and edited my theme index.php, album.php and search.php files. $firstPageImages = normalizeColumns('2', '6');?> I changed to $firstPageImages = normalizeColumns('8', '6');?> How to setup number of albums per page - sbillard - 2010-08-17 Probably do not want to use Generally it is not needed nor a good idea to modify the core functons. Doing so will cause you troubles when you upgrade Zenphoto versions. So, the recommended solution for you would be to change the option on the options/theme tab. In addition, I think you have probably mis-interpreted the normalizeColumns() function. The first parameter represents the number of columns there are for albums, the second represents the number of columns there are for images. Both these are determined by your theme CSS. In the case of the default theme, unless you have modified it, only two album thumbs are displayed per "line" so that number MUST remain 2. How to setup number of albums per page - paparazzo - 2010-08-18 I understand what you mean, but I tried to go to Admin toolbox / Options / Theme. I then changed "Albums per page" from 5 to 8, and clicked on SAVE button. When the page refreshed I noticed that "Albums per page" was back to 5. No matter what number I tried to change it to, the script won't accept and save the change. NOTE: I had no problem changing the "Thumbnails per page". What could be the issue here? How to setup number of albums per page - acrylian - 2010-08-18 Is it possible that you are not running the latest release? Also what theme, as it might be overriding the backend options. How to setup number of albums per page - sbillard - 2010-08-18 Most likely a problem with an old version of Zenphoto as he has said earlier that he is using the How to setup number of albums per page - paparazzo - 2010-08-18 Zenphoto version 1.3 [5479] (Official Build)Current gallery theme: DefaultPHP version: 5.2.13Graphics support: PHP GD library bundled (2.0.34 compatible)PHP memory limit: 96M (Note: Your server might allocate less!)MySQL version: 5.1.47How to setup number of albums per page - sbillard - 2010-08-18 Ok, I have tracked down the issue. There is a bug with saving theme options. It will be corrected in the nightly build tonight. Thanks for your patience and information. How to setup number of albums per page - paparazzo - 2010-08-18 Well, that is really strange. I wanted to make some changes again, and tried to change number of albums per page to 8, and this time the script accepted the change. Before doing that I have updated the script, but after doing that I tried to change the number of albums per page and didn't succeed. However, everything is fine now. How to setup number of albums per page - sbillard - 2010-08-19 Yes, the circumstances where it will work/not work are pretty obscure. (Which makes finding and fixing interesting.) Suffice it to say that it will become reliable with the nightly build. |