Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

expressionengine won't display all entries

I'm trying to display a list of retailers on a client site. The filtered list (by State) displays properly, but the 'show all' list doesn't. Items that are missing from the 'show all' list are displaying in the filtered list, so I know it's not an issue with the entries themselves.

I checked the statuses - all seems to be correct, and I've checked that dynamic=no is set.

What am I missing?

EE v2.2.2, Build 20110801

like image 822
dbigca Avatar asked Nov 06 '12 02:11

dbigca


2 Answers

By default, ExpressionEngine set a limit of 100 entries so without a limit parameter set, it is the same as

{exp:channel:entries channel="news" limit="100"}

To get all your entries to display set a high limit like so:

{exp:channel:entries channel="news" limit="999"}

That should have all your entries showing up!

Cheers,

like image 147
Dan Decker Avatar answered Sep 22 '22 02:09

Dan Decker


I use limit="1000000" to make sure.

like image 24
Samsull Avatar answered Sep 23 '22 02:09

Samsull