Request
Add ‘Skip’ Parameter for all Module Components
-
We currently have
limitto specify the number of items returned by a component.eg:
{% component source: "Module Name", limit: "100" ... %}It would be handy to also have
skip(oroffset) to allow the offset of items retrieved.eg:
{% component source: "Module Name", limit: "100", skip: "100" ... %}This would be useful for custom pagination...
- Liquid
Add tag {{request.request_data.referrer_href}}
-
Currently we have
{{request.request_data.referrer}}available to us. This tag comes in handy for form redirects. However, it would be handy to have another option{{request.request_data.referrer_href}}.There are times when I have a custom module search page. Users can filter/search and then edit the module item on the front end. However, when using the current “referrer” in a form...
- Liquid