v1.x-dev
1.9999999.9999999.9999999-devEasily keep track of products customers bought together - for Craft Commerce 2
proprietary
The Requires
                         Wallogit.com
                    
                    2017 © Pedro Peláez
                    
                    
                    
                    
                
                
            
Easily keep track of products customers bought together - for Craft Commerce 2
, (*1)
Easily keep track of and show products customers bought together. Plus, sorting by individual and order sales., (*2)
This plugin requires Craft CMS 3.0.0 or later, and Craft Commerce 2.0.0-beta.2 or later., (*3)
Purchasable via the Plugin Store., (*4)
Use the craft.purchasePatterns.related function in your templates to get 
related products that customers also bought., (*5)
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., (*6)
{% set customersAlsoBought = craft.purchasePatterns.related(
    product,
    10
).fixedOrder(true).all() %}
Setting fixedOrder to true will sort the products by times purchased together., (*7)
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., (*8)
{% 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., (*9)
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:, (*10)
{% 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., (*11)
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:, (*12)
{% set products = craft.purchasePatterns.extended().orderBy('orderCount DESC').all() %}
        Easily keep track of products customers bought together - for Craft Commerce 2
proprietary