Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 2.09 KB

File metadata and controls

46 lines (30 loc) · 2.09 KB
description
Detailed instructions on how to install and configure Product Feeds into your Umbraco Commerce implementation.

Installation

The Product Feeds package can be installed directly into your project's code base using NuGet packages.

Getting started

Below you can find some steps on installing the package using NuGet and getting started with implementing the Product Feeds into your Umbraco Commerce store.

  1. Install the package from NuGet

  2. Locate where you register the dependencies IUmbracoBuilder.AddUmbracoCommerce() and add a call to IUmbracoCommerceBuilder.AddCommerceProductFeeds() to add this plugin to your website.

     umbracoBuilder.AddUmbracoCommerce(ucBuilder => {
         ucBuilder.AddCommerceProductFeeds(); // add this line
     }
  3. Open your store's setting page in the backoffice.

  4. Click on Product Feed section.

product feed list page

  1. Click on Create Product Feed button and fill in the feed settings. Mandatory fields are marked with a red asterisk (*). You can add more product data by adding new mappings in Property And Node Mapping section.

feed setting page

  1. After saving the feed setting, a link to access the feed will show up under Feed URL Segment field and at the bottom of the page.

open feed link

Google Merchant Center Feed sample:

google merchant center feed

Upgrading

{% hint style="info" %} Even though the package modifies only the umbracoCommerceProductFeedSetting table, it is always advisable to take a complete backup of your site/database before upgrading. {% endhint %}

The Product Feeds package uses a database migration for both installs and upgrades. Upgrading is generally a case of installing the latest version via NuGet over the existing package and restarting the website.