Multiple Product List Paginations

Permalink 1 user found helpful
I am currently working on a site that requires 2 product lists with pagination on the home page.

I need to make the pagination independent of each other. At the moment going to page 2 on one list also moves to that same page on the other.

Thanks
Richard

lookstechnical
 
itrio replied on at Permalink Best Answer Reply
itrio
If the pagination is based on a variable in URL, then you need to use two different pagination variables for the two lists.

You haven't provided so much information about your problem, so please give more to be able to give better advice.
Mnkras replied on at Permalink Reply
Mnkras
you can modify the helper to accept variables for the ccm_paging,
lookstechnical replied on at Permalink Reply
lookstechnical
problem solved i took a closer look at the item list and pagination helper and found a function to set a namespace

$productList->setNameSpace('ps');
   $paginator = $productList->getPagination();


the result is a query string ?ccm_paging_p_ps=
Mnkras replied on at Permalink Reply
Mnkras
ah, cool
cjramki replied on at Permalink Reply
cjramki
Thanks @lookstechnical,
This helps me a lot...