Increase average order value by suggesting frequently bought together products based on past orders. Also known as related products or product recommendations.
Be the first to know when the new marketplace is available. We'll send you an email as soon as it launches.
This plugin finds products that are often bought together by looking at past orders. You can integrate these frequently bought together products on your storefront, and so increase your revenue.
This is a paid plugin. For production use, please purchase a license at https://vendure.io/marketplace.
You can get the related product via the shop API with the following query:
Product relations in the Shop API are sorted by support, meaning that the most bought together products will appear first in the list. The admin UI shows relations in random order due to the unordered nature of SQL relations.
Each shop's optimal support level varies based on data density. For example, a shop with many variants and few orders requires a lower support level. To experiment with support levels:
experimentMode: true
in the plugin's init function.http://localhost:3000/admin-api
or use a GraphQL client like Yaak to use the admin APIWhen you have found your desired support level, you set it in the plugin:
/admin/catalog/products
Calculate frequently bought together relations
The frequently bought together relations are now set on your products.
Tips for Tweaking Support Levels:
0.1
) and gradually reduce (0.01
, 0.001
, etc.).To set different support levels for channels:
Use the vendure-token
header to preview queries for specific channels.