Guide

Installation

Find QARR plugin in the Plugin Store.

Usage

Place this snippet anywhere you have an entry or product model

	{{ craft.qarr.display(model) }}

REQUIRED

QARR works with Commerce Product, Channels and Singles only. You must pass an instance model.

Advanced Usage

You can add extra params for advanced setup.

    {{ craft.qarr.display(model, {
        limit: 3,
        pagination: 'infinite',
        reviews: {
            display: 'productReviews'
        },
        questions: false
	}) }}

Limits

You can set limit to how many entries you want to show.

    {{ craft.qarr.display(model, {
        limit: 3
	}) }}

Pagination

You have the option between Arrows and Infinate pagination. If you don't need it you can set it to false. By default it will be set to arrows.

arrows - uses arrow pagination

infinite - uses infinate pagination

Displays

Displays gives you couple of things. You can set title format for submissions and add custom fields. See Displays for more info.