How can I create the product feed manually in Magento 2?

The product feed is generated automatically by our Magento 2 extension via the standard Magento cron.

In case you want to trigger the product feed generation manually, you can execute the following command in the directory of your Magento installation

bin/magento recolize:feed:generate

If you only want to create the product feed for a certain store, you can use the following command:

bin/magento recolize:feed:generate 
How can I create the product feed manually in Magento 2?
> Read more

How to display recommendations in Magento 2?

To display the recommendations on the following pages

  • Product pages
  • Category pages
  • Search result pages
  • Cart
  • Checkout success page
  • 404 page

use the following CSS selectors

.catalog-product-view .column.main
.catalog-category-view .column.main
.catalogsearch-result-index .column.main
.checkout-cart-index .column.main
.checkout-onepage-success .column.main
.cms-noroute-index .column.main

Add the CSS selectors to your domain in the Recolize Tool under Domains > Edit > Configuration > Please enter the CSS selectors for your page.

How to display recommendations in Magento 2?
> Read more

The Magento product feed is not up-to-date

By default the Recolize product feed is generated each night. Additionally you can also set another time in the configuration section of the Magento extension.

If the Recolize product feed in Magento is not up-to-date there are a couple of things to check:

  1. Is the Magento cron job set up correctly? According to Magento it should run every 5 minutes.
  2. Has the Recolize cron job run successfully last night? Therefore e.g. you can check the cron_schedule table of your Magento installation.
The Magento product feed is not up-to-date
> Read more