Offer product recommendations. Recommendations are a normal part of ecommerce and something that saleor will eventually need to look into. https://github.com/mirumee/saleor/issues/1089 appears only to be concerned with if the feature was available, so I opened a new issue to discuss potential solutions.
Since recommendations are closely linked with search and analytics, it makes sense to approach it from the search backend perspective. Elastic's Graph looks very promising as a recommendation engine and it's built to integrate with Elastic Search. It is also open source.
The main flaw I see with this is that it could tie saleor more to elastic search and limit the ability to plug in other search backends in the future. Or perhaps a "recommendation backend" could be built to support plugging in different recommendation engines eventually.
While recommendation may not be in the roadmap currently, maybe some pointers should be given in the saleor docs for hacks that could be used in the meantime.
I've seen several articles proposing ways to achieve this using just Elastic Search. It does look like it could be a good start before implementing a more robust recommendation system.
The easiest way to achieve this, is the way Woocommerce does it: With a textbox where you can type the SKU's of products you want to appear as recommendation under the product.
Woocommerce has a seperate field for:
Of course the default front-end layout should support it too.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I also like the idea of manual recommendations. It's more flexible for merchants to make this choice when the number of skus is small. Advance solutions like graph search and collaborative filtering would better work as a plugin for larger stores that need it. In my experience, more stores have less than 100 skus so it still possible for human staff to recommend stuff.
Most helpful comment
I also like the idea of manual recommendations. It's more flexible for merchants to make this choice when the number of
skus is small. Advance solutions like graph search and collaborative filtering would better work as a plugin for larger stores that need it. In my experience, more stores have less than 100skus so it still possible for human staff to recommend stuff.