Hi
It can be a possible solution to:
1) go to /administrator/components/com_wbadvert/includes/
2) simply comment these two lines in advert.php, group.php, client.php
- Code: Select all
//$limit = $mainframe->getUserStateFromRequest( "viewlistlimit", 'limit', $mainframe->getCfg('list_limit') );
//$limitstart = $mainframe->getUserStateFromRequest( "wbadvert{$task}limitstart", 'limitstart', 0 );
and add these right after them:
- Code: Select all
$limit='1000';
$limitstart='0';
It will force the template to display the
first 1000 entries (ads) or whatever number you declare as the $limit variable, so
you will have all your entries on one page - as long as you have less ads then the limit.
You have to make these changes in the advert, group, client php files in the same folder.