ether/purchase-patterns

Easily keep track of and show products customers bought together. Plus, sorting by individual and order sales.

Installs: 3 268

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 5

Forks: 1

Open Issues: 2

Type:craft-plugin

1.1.5 2020-03-18 14:01 UTC

This package is auto-updated.

Last update: 2024-04-18 23:01:20 UTC


README

Purchase Patterns

Purchase Patterns

Easily keep track of and show products customers bought together. Plus, sorting by individual and order sales.

Requirements

This plugin requires Craft CMS 3.0.0 or later, and Craft Commerce 2.0.0-beta.2 or later.

Installation

Purchasable via the Plugin Store.

Usage

Use the craft.purchasePatterns.related function in your templates to get related products that customers also bought.

ProductQueryExtended related ( Product|Order $target [, int $limit = 8 [, ProductQuery $paddingQuery = null [, array $filter = [] ] ] ] )

The function returns a ProductQueryExtended, so you can include additional query parameters as needed. The id parameter is already set and shouldn't be overridden.

{% set customersAlsoBought = craft.purchasePatterns.related(
    product,
    10
).fixedOrder(true).all() %}

Setting fixedOrder to true will sort the products by times purchased together.

The paddingQuery allows you to specify a ProductQuery that will be used to pad out the related results if they fall below the given limit. This query should NOT include things like order, limit, or execution commands like all.

{% set customersAlsoBought = craft.purchasePatterns.related(
    order,
    20,
    craft.products.relatedTo(product.myCategory)
).orderBy('random()').all() %}

Editor's Note: random() is Postgres specific. Use RAND() for MySQL.

filter expects an array of properties that will be used to filter the final result. You can use this to ensure your query always returns the expected number of results. You can pass any properties that you would otherwise include in the outer query:

{% set customersAlsoBought = craft.purchasePatterns.related(
    order,
    20,
    craft.products.relatedTo(product.myCategory),
    { availableForPurchase: 1 }
).all() %}

For more info on the filter feature (added by jmauzyk) see #3.

Extended Product Query

The extended product query allows you to sort the products by qtyCount and orderCount. It extends the base product query, to you can use it the same way as you would craft.products. The related query above returns an extended query, as does:

{% set products = craft.purchasePatterns.extended().orderBy('orderCount DESC').all() %}