Would it be possible to add 'paging' to PIM feeds? Some customers are required to deliver a product feed with 'paging' eg. 500 products per page and currently would this require a custom template.
This could be checkbox on the feed to enable 'paging'. If checked, it should show a 'items per page' field, where you can specify the number of items per page. Furthermore should this information be available in the XML eg.:
<products>
...
</products>
<paging>
<page>1</page> <!-- current page -->
<pages>2</pages> <!-- number of pages -->
<limit>500</limit> <!-- number of items per page -->
<total>788</total> <!-- number of items in total -->
</paging>
Br. Michael Knudsen