Product Relations feature overview

Edit on GitHub

The Product Relations feature lets product catalog managers create logical relations between products based on their actual properties. Product relations are displayed on the Storefront to achieve multiple purposes:

  • Promote products in cart.
  • Recommend product alternatives.
  • Display comparable or additional products to the product a customer is viewing.

Product relations are established only between abstract products. An abstract product can have multiple product relations.

To learn how a Back Office user can create a product relation, see Creating a product relation.

A developer can import product relations.

Product relation types

A product relation type defines how a product relation is displayed on Storefront. The following product relation types are shipped with the feature: Related products and Upselling.

With Related products, related products are displayed on the product details page of the product owning the relation.

Related products

With Upselling, when the product owing the relation is added to the cart, related products are displayed on the Cart page.

Upselling

A product catalog manager can select a product relation type when creating or editing a product relation in the Back Office.

Product types in product relations

In product relations, there are two types of products: a product owning a relation and a related product.

There is always only one product that owns a product relation. It is selected manually from the product catalog.

There can be multiple related products in a product relation. Related products are added automatically based on the related product rules.

On the Storefront, the related products are displayed on the product details page of the product owning the relation. Product relations do not work the other way around. In other words, the product owning the relation is not displayed on the product details pages of its related products.

A related product rule is a condition that must be fulfilled by a product to be automatically added to related products of a product relation. The rules are defined as queries, which are built using the Query Builder in the Back Office.

A product relation can have one or more rules. Example:

PARAMETER RELATION OPERATOR VALUE
Brand equal Sony
Category equal Cameras

In this example, only the products that belong to the Cameras category and the Sony brand are added to related products.

You can combine the rules using AND and OR combination operators. When several rules are combined with the AND operator, all of them must be fulfilled for a product to be added to related products. When several rules are combined with the OR operator, at least one of them must be fulfilled for the product to be added to related products.

In the following example, for a product to be added to related products, it must belong to both the Sony brand and Cameras category.

And combination operator

In the following example, for a product to be added to related products, it must belong to at least the Sony brand or Cameras category.

Or combination operator

Info

When rules are combined by the OR operator, they do not exclude each other. If a product fulfills both such rules, it is still added to related products. In the previous example, a product must fulfill at least one of the rules to be added to related products. However, fulfilling both of them still adds it to related products.

Rule groups

When you have a big product catalog, you might want to use rule groups to make the selection of related products more precise. A rule group is a separate set of rules with its own combination operator.

Rule group

With the rule groups, you can build multiple levels of rule hierarchy. When a product is evaluated against the rules, it is evaluated on all the levels of the hierarchy you build. On each level, there can be both rules and rule groups.

Rule group hierarchy

When a product is evaluated on a level that has a rule and a rule group, the rule group is treated as a single rule. The following diagram shows how a product is evaluated against the rules from the previous screenshot.

Product evaluation diagram

product-relation-rule-hierarchy

After you save a product relation, the products that fulfill the defined rules are added to related products. If you want to keep the list of related products up to date with the changes in your product catalog that may happen in the future, you can set the product relation to be updated regularly.

If selected, the product catalog is automatically evaluated against the defined rules on a regular basis. By default, the list of related products is updated every day at 02:30 GMT. At some point, if one or more related products no longer fulfill the rules, they are removed from related products. If there are new products fulfilling the rules, they are added to related products.

If you do not select this option, the product catalog is evaluated against the defined rules only at the stage of product relation creation.

A product catalog manager can select this option when creating a product relation.

A developer can do the following:

  • Manually update the list of related products by running the console product-relation:update command.
  • Change the default behavior of the cronjob that updates related products in config/Zed/cronjobs/jenkins.php.

Store relation

A product catalog manager can define the stores each product relation is displayed in.

If no store relation is defined for a product relation, it is not displayed on Storefront.

Stores are defined when creating or editing a product relation in the Back Office.

BACK OFFICE USER GUIDES
Get a general idea of the Product Relations feature
Create product relations
Edit product relations
INSTALLATION GUIDES UPGRADE GUIDES
Product relations feature integration ProductRelation migration guide
Glue API: Product relations feature integration ProductRelationStorage migration guide