Is there any way to count how many pages there is in pagination? I'm not talking about Collection count, but something like pagination count maybe?
Asked
Active
Viewed 6,446 times
3
-
What page, what template? – Tim Bezhashvyly Sep 28 '13 at 17:45
1 Answers
7
A pagination is linked to a collection. To get the total number of pages use this:
$collection->getLastPageNumber();
If you have a pagination block in your page you can get the last page number like this:
$block->getLastPageNum();
Marius
- 197,939
- 53
- 422
- 830
-
I know magento-stackexchange want me to avoid thanks, but i say it anyway, thank you - it was exactly what i needed :) – simond Sep 28 '13 at 18:35