How to change the limit of photo on index page.
I want to change the index photos to show 6 but, in photo homepage I want 24 photos show. Anyone know, how to change that?
-
-
- · Senthur
- ·
OK, Thanks but I want this to display when visitors click on index menu buttons. I want to photos, Videos, Album and others too. Maybe in future, upgrade vision. I will wait. I don't know how to coding.
-
-
·
LeonidS
-
·
In reply to Senthur
- ·
You may change the the URL of the pages directly in Navigation app. For example, in System->Site Naviagation->26 items->Photos item change the URL form page.php?i=photos-home to page.php?i=photos-home&per_page=24
-
·
LeonidS
-
- · Senthur
- ·
ok, thank you. It`s working now.
-
- · Senthur
- ·
Do you know how to do this for Albums? I couldn't find the url for to show 24 in album. not for site menu or Site Navigation. the Album links Can you help pls. Thanks
-
-
·
LeonidS
-
·
In reply to Senthur
- ·
Use the page.php?i=albums-home&per_page=24 URL for albums home.
-
·
LeonidS
-
- · Senthur
- ·
thank you
-
- · Senthur
-
·
In reply to LeonidS
- ·
I am sorry, It's not working. When we go to album home page. We have list for each album. Those album, i want to be 24 per page. This is my album home. if you click u will sen only 3 pic showing. How to make those for 24?
-
-
·
LeonidS
-
·
In reply to Senthur
- ·
Well, it relates to the images per album and depends on the "Number of items in album card " parameter in the settings of Albums app. But the number of items are controlled by Flickity options , you may add / change more parameters in the following code of modules\boonex\albums\js\main.js file:
BxAlbumsMain.prototype.init = function() {
$('.bx-albums-unit-images').flickity({
cellSelector: '.bx-albums-unit-image',
cellAlign: 'center',
imagesLoaded: true,
wrapAround: true,
pageDots: false
});
};
-
·
LeonidS
-
- · Senthur
- ·
thanks, I try this.