By DHNGroup on Wednesday, 13 February 2019
Posted in General Issues
Replies 3
Likes 0
Views 503
Votes 0
if the filter is in ALL position with over thousands of active subscriptions the page is becoming non responsive and slows down the server a lot.
Can you point me in a code to hide ALL pagination option?
I am on 3.7.1 version.

thanks!
Hey Assocyate,

To remove pagination option from subscription page, you can find the code on below mentioned file path.
root/administrator/components/com_payplans/templates/default/subscription/default_grid.php, near line no. 65, find below mentioned line of code.
[gist type="php"]
<?php if(PAYPLANS_JVERSION_FAMILY !== '16'): ?>
<td>
<?php echo $pagination->getLimitBox();?>
</td>
<?php endif;?>
[/gist]

Remove this code to remove pagination box.
Let me know if you have any query.
·
Wednesday, 13 February 2019 12:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks, but I actually would not like to remove the entire limit box and instead I would like to get rid just 'ALL" option.
·
Friday, 15 February 2019 01:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey,

If you want to remove that all option then you need to do change in joomla pagination file.
root/libraries/src/Pagination/Pagination.php, near line no. 576, find below mentioned code.
[gist type="php"]
$limits[] = \JHtml::_('select.option', '0', \JText::_('JALL'));
[/gist]

Remove or comment out this code.

Update me if you have any query.
·
Friday, 15 February 2019 11:21
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post