ether/purchase-patterns 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ether/purchase-patterns

Composer 安装命令:

composer require ether/purchase-patterns

包简介

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

README 文档

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() %}

统计信息

  • 总下载量: 3.46k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2018-04-17

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固