this might be easy (but a solution evades me):
I have a template with pagination and entries that have a custom field that can be set to either yes or no. (I prefer this to a custom status for some reasons).
I would like to filter my entries depending on the value of field.
right now, I’m using
{exp:weblog:entries weblog="{my_weblog}" limit="10"}
{if type=="yes"}
<!-- only show entries of custom "type" field value==yes -->
{/if}
{/exp:weblog:entries}so far, this works great, except that pagination shows up even if there are only 9 or less entries of custom “type” field value “yes” (because the total number of entries is > 10).
how can I hide the pagination?
thanks,
pirco