Evening,
Does anyone know where to set the default pagination for the images tab within the users control panel?
Thanks in advance...
Control Panel Images Pagination...
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Control Panel Images Pagination...
Hi, in parameters of menu link to gallery and global configuration. See similar posts in this forum.
Jan
Jan
If you find Phoca extensions useful, please support the project
-
nichollsa
- Phoca Member

- Posts: 15
- Joined: 21 Feb 2012, 01:48
Re: Control Panel Images Pagination...
Hi Jan,
The pagination was already setup within these areas so we know this does not work.
Please note that this is the pagination for the images tab within the users control panel and not the list of images inside a category.
Hope this expains our issue better...
Regards
Ant
The pagination was already setup within these areas so we know this does not work.
Please note that this is the pagination for the images tab within the users control panel and not the list of images inside a category.
Hope this expains our issue better...
Regards
Ant
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Control Panel Images Pagination...
Hi, this needs to be set directly in the code 
components\com_phocagallery\models\user.php
change the 20 in
$limit_subcat = $app->getUserStateFromRequest( $this->_context_subcat.'.list.limitsubcat', 'limitsubcat', 20, 'int' );
$limit_image = $app->getUserStateFromRequest( $this->_context_image.'.list.limitimage', 'limitimage', 20, 'int' );
Jan
components\com_phocagallery\models\user.php
change the 20 in
$limit_subcat = $app->getUserStateFromRequest( $this->_context_subcat.'.list.limitsubcat', 'limitsubcat', 20, 'int' );
$limit_image = $app->getUserStateFromRequest( $this->_context_image.'.list.limitimage', 'limitimage', 20, 'int' );
Jan
If you find Phoca extensions useful, please support the project
-
nichollsa
- Phoca Member

- Posts: 15
- Joined: 21 Feb 2012, 01:48
Re: Control Panel Images Pagination...
Brilliant, that has sorted it thanks Jan...
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Control Panel Images Pagination...
Ok
If you find Phoca extensions useful, please support the project