I am building a catalog site. On the thumbnail menu images pages I am using pagination and limiting the entries shown to 8, but it is not working. When I don’t limit the number of entries it shows all of them correctly, but when I limit the number of entries to 8, every page is showing a different number of entries.
Here is the code:
<!-- start thumbnail list -->
<ul class="thumbnail-list">
{exp:weblog:entries weblog="products" disable="member_data|trackbacks" category="4" orderby="url_title" sort="asc" limit="8" paginate="top"}
{if img-id =="1"}
<li>
<a href="http://{url_title_path=products/product_detail_2}">{site_url}images/ee_products/th/{title}.jpg</a>
<a href="http://{url_title_path=products/product_detail_2}"><span>{item_name}</span></a>
</li>
{/if}
{paginate}
<ul class="page-nav">
{pagination_links}
</ul> <!-- end div - pages -->
{/paginate}
{/exp:weblog:entries}
</ul>
<!-- end thumbnail list -->Any help would be greatly appreciated. Thanks