Yet another CTLMM problem: pagination with different parents
Posted: Tue Apr 13, 2010 11:50 am
Hi,
to be honest, CTLMM is driving me nuts with so many bugs. Yet, it's the only CMSMS module which fits my needs. Anyways, this is my problem:
I've made 1 module with 6 different parents now. The children are NOT shared.
I've created 6 pages in CMSMS, which contain placeholders like {cms_module module="producten" parent="Compacte-aggregaten-1-tot-10-kVA"} and {cms_module module="producten" parent="Geluidsarme-lasaggregaten"}.
My list_default template looks like this:
Whenever I turn on pagination, it shows the other parents on the other "paginated" pages! So, basically, it uses the pagination to switch from parent to parent. While my intention is use the paginated pages to show what only 1 parent contains!
So what am I doing wrong? Thanks in advance, 'cus this is bugging me like hell!
to be honest, CTLMM is driving me nuts with so many bugs. Yet, it's the only CMSMS module which fits my needs. Anyways, this is my problem:
I've made 1 module with 6 different parents now. The children are NOT shared.
I've created 6 pages in CMSMS, which contain placeholders like {cms_module module="producten" parent="Compacte-aggregaten-1-tot-10-kVA"} and {cms_module module="producten" parent="Geluidsarme-lasaggregaten"}.
My list_default template looks like this:
Code: Select all
{if $itemcount > 0}
<div id="product_container">
{foreach from=$itemlist item="item"}
{cms_module|indent:2 module="producten" listtemplate="final_default"}
{/foreach}
</div>
{if $page_pagenumbers}
<p class="pagenumbers">{$page_pagenumbers}</p>
{/if}
{else}
<p>Geen resultaten.</p>
{/if}
So what am I doing wrong? Thanks in advance, 'cus this is bugging me like hell!