What do you choose for Content Selection for the View?
What happens if you *do* set a limit in the View (a high limit, e.g. 999)?
I would turn on debug mode for the View and inspect the query parameters as well as the resulting SQL query to spot if a limit is being applied (and if the limit you set such as 999 survives through to building the SQL query).
Go to Toolset > Settings > Front-end Content to activate the debug mode.
Your View is querying a post type Processing Item, and there is an ACF repeater field assigned to that post type.
Toolset isn't designed to handle ACF repeater fields, and so you are outputting each instance of the repeater field manually.
So the first instance has custom field meta_keys like details_0_type, the second like details_1_type, the third like details_2_type, etc.
You have conditional rows for each of those instances in the output of the View, going from 0 through 9, but you stop there. So that's 10 instances. If you want more instances implemented this way you will have to keep adding sections for each possible instance, e.g. details_10_type, details_11_type, etc.
This isn't a particularly efficient way of handling this.
I assume ACF has some functions for handling the output of repeater fields more dynamically (or, at least, some tutorials about it), and I would be inclined to register a custom shortcode that dynamically outputs rows for however many instances of the repeater field there are for the current post, and then insert that shortcode in the output of your View.
Nigel, this is the weirdest thing...
When I was looking at the view, the other day, there were only 7 of those conditional statements viewable (Firefox). There was white space the rest of the way down. I couldn't understand why the editor was so large (tall).
Now I see them all (Firefox).
I'll definitely look into the shortcode solution. That seems a better way to go, but it also seems a bit beyond my capabilities. I'll give it a try, but I might need your help again!
I guess that would resolve this ticket. Thanks for taking a look at it.
Nigel,
I just checked the other view (Hog Processing Items). Please see attached.
That's what I was referring to, when I mentioned that I wasn't able to see all those conditional statements. If I select all, I'm able to copy all the statements and paste them into Notepad, but I'm not able to see them in the view editor.