4

構成可能でシンプルな商品関係を使用して、Google ショッピングのフィードを作成したいと考えています。どの団体にも、構成可能でシンプルな製品関係フィードを作成する方法に関するアイデア/サンプル xml ファイルがあります。

4

1 に答える 1

4

いくつかの研究開発を行った後、私はそれを自分で理解しました。基本的に、すべての単純な製品でアイテム グループ ID を使用する必要があり、Google ショッピングがこれらの製品が相互の重複コピーではなくバリアントであることを認識できるように、親製品の SKU が必要です。

バリエーション商品に名前を付けるときは、すべてのバリエーション商品に共通のタイトルを必ず含めてください

他の人にも役立つように、以下の例を確認してください。

<?xml version='1.0'?>
<rss version ='2.0' xmlns:g='http://base.google.com/ns/1.0'>
<channel>
<title><![CDATA[Website Title]]></title>
<description><![CDATA[Website Desctiption.]]></description>
<link>http://www.domain.com/</link>

    <item>
    <g:id>2450</g:id>
    <title><![CDATA[Product Title]]></title>
    <link>http://www.domain.com/product_url/</link>
    <g:price>70.00 USD</g:price>
    <g:sale_price>49.00 USD</g:sale_price>
    <description><![CDATA[Product Description.]]></description>
    <g:condition>new</g:condition>
    <g:expiration_date>2013-11-20</g:expiration_date>
    <g:image_link>http://www.domain.com/product_image_name.png</g:image_link>
    <g:brand><![CDATA[Product Brand]]></g:brand>
    <g:mpn><![CDATA[Product SKU]]></g:mpn>
    <g:product_type><![CDATA[Shoes]]></g:product_type>
    <g:google_product_category><![CDATA[Apparel & Accessories > Shoes]]></g:google_product_category>
    <g:availability>in stock</g:availability>
    <g:size>6</g:size>
    <g:gender>Female</g:gender>
    <g:age_group>Adult</g:age_group>
    <g:color>BLUE</g:color>
    <g:item_group_id>Configurable Products Sku</g:item_group_id>
    </item>

    <item>
    <g:id>2450</g:id>
    <title><![CDATA[Product Title]]></title>
    <link>http://www.domain.com/product_url/</link>
    <g:price>70.00 USD</g:price>
    <g:sale_price>49.00 USD</g:sale_price>
    <description><![CDATA[Product Description.]]></description>
    <g:condition>new</g:condition>
    <g:expiration_date>2013-11-20</g:expiration_date>
    <g:image_link>http://www.domain.com/product_image_name.png</g:image_link>
    <g:brand><![CDATA[Product Brand]]></g:brand>
    <g:mpn><![CDATA[Product SKU]]></g:mpn>
    <g:product_type><![CDATA[Shoes]]></g:product_type>
    <g:google_product_category><![CDATA[Apparel & Accessories > Shoes]]></g:google_product_category>
    <g:availability>in stock</g:availability>
    <g:size>7</g:size>
    <g:gender>Female</g:gender>
    <g:age_group>Adult</g:age_group>
    <g:color>BLUE</g:color>
    <g:item_group_id>Configurable Products Sku</g:item_group_id>
    </item>
</channel>
</rss>  
于 2013-11-13T06:06:06.407 に答える