By User on Sunday, 03 March 2019
Posted in General
Replies 2
Likes 0
Views 490
Votes 0
Hello. I would like to display 99 groups/albums/videos in "All clusters/albums/videos layout" and ignore Joomla global settings (items per page). To make different values...
Can you please give me a hint, what file should be overrided?
Thanks.
Unfortunately that is no way to template override for this, but you can modify this following files :

1. Easysocial global pagination limit
JoomlaFolder/administrator/components/com_easysocial/includes/easysocial.php
LINE 201 (getLimit method)

JoomlaFolder/administrator/components/com_easysocial/includes/model.php
LINE 82

$systemLimit = $jConfig->getValue( 'list_limit' );



2. Only groups/albums/videos view pagination limit
Videos
JoomlaFolder/components/com_easysocial/views/groups/view.html.php
LINE 173

$options['limit'] = $limit;


Videos
JoomlaFolder/components/com_easysocial/views/videos/view.html.php
LINE 106

$options['limit'] = ES::getLimit('videos_limit', 20);


Albums
JoomlaFolder/administrator/components/com_easysocial/includes/model.php
LINE 82

$systemLimit = $jConfig->getValue( 'list_limit' );
·
Sunday, 03 March 2019 10:07
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post