Using a Themes > Files > New file, I was able to pull in endorsements onto a different page... however, this seems to only pull in the latest 25 entries.
{% for endorsement in page.endorsement.endorsements %}
{{ endorsement.signup.published_name_linked }} <br/>
{% endfor %}
I haven't been able to find out if there is a limit to the numbers of endorsement arrays returned or not. Is there a way to verify if this is a limitation or if there is a way to show all of the endorsements?
Official response from NationBuilder Support
Try adding pagination:
{{ page.endorsement.endorsements | paginate }}
Share this post
Showing 2 reactions
Sign in with
<p>{{ page.endorsement.endorsements | paginate }}</p>