Hello all,
using PW 3.0.148 with the regular site profile for a blog, I got an an empty pagination output when I had a Toggle field in the selector.
The Toggle Fieldtype was introduced with https://processwire.com/blog/posts/pw-3.0.139/ .
The selector resulting in empty pagination:
$posts = $pages->find("parent=blog, sort=-date, limit=10, toggle_field=0");
It worked well, when I replaced the Toggle field with a Checkbox field:
$posts = $pages->find("parent=blog, sort=-date, limit=10, checkbox_field=0");
So the prerequisites for the pagination to work are given.
The settings for the Toggle field were:
Formatted value: Integer
Label Type: Yes/No
Input Type: Toggle buttons
Default selected option: No
Thanks for any hints!