Phoca Gallery Slideshow Images Limit
Posted: 01 Dec 2012, 21:59
Hi, this is my guide to add the limit number of images loaded by phoca gallery slideshow. For me it's useful when there are many images in a category.
In plugins/content/phocagalleryslideshow/phocagalleryslideshow.php
Add after:
this code:
<-- you can increase this value
Add after:
this code:
Replace
with
In plugins/content/phocagalleryslideshow/phocagalleryslideshow.php
Add after:
Code: Select all
$pause = 2500;
Code: Select all
$limit = 100;
Add after:
Code: Select all
else if($values[0]=='imageordering') {$tmpl['imageordering'] = $values[1];}
Code: Select all
else if($values[0]=='limit') {$limit = $values[1];}
Code: Select all
. $imageOrdering;
Code: Select all
. $imageOrdering
. ' LIMIT ' . $limit;