# Types of recommendations

# Configuration

Go to Mission Control (opens new window) -> Marketing Machine -> Live settings to select type and priority of your onsite frame recommendations:

# Collaborative Filtering

Analyze the customer's behavior and recommend products that are liked by other customers with similar preferences.

# Basket analysis

When the client is on a product page, recommend products co-purchased with the product.

# Complementary products

Configure product sets matched to the product and display them when client is on the product page. The matched product could be set via the product feed. See the relevant section in the documentation.

# Bestseller

Show products most often purchased in your store;

# Newest Products

Show products that have recently appeared in the store. We recommend using a product feed to have an up-to-date product catalog for your store.

# Recently Viewed

Show products that the customer recently viewed. Use the TTL for product view to control how old product views take into account.

# Recently Added To Cart But Not Ordered

Show products that the customer recently added to cart, but not ordered. Use the TTL for add to cart and TTL for order to take into account only specifc date range.

# Basket Analysis & Complementary Products (script example)

To have basket analysis and complementary products working, add this script on pages where you want to use it. Notice that the "product_ids" field is automatically filed on every product page.

<script type="text/javascript">
  window._edrone = window._edrone || {};
  _edrone.current_product_id = '${product_ids}' // use "~" or "|" sign to separate values from each other if you want to send more then one product id
</script>