2016-12-06 67 views

回答

1

使用InStock应根据Google Merchant Center Help足够了,因为使用InStoreOnly意味着:

缺货(有用的,如果该产品缺货,您的网站,但在实体零售店)

使用这两个属性不会引发任何错误:

但是我只会用InStock


<div itemscope itemtype="http://schema.org/Product"> 
    <link itemprop="additionalType" href="http://www.productontology.org/id/Microwave_oven" /> 
    <span itemprop="name">Kenmore White 17" Microwave</span> 
    <img itemprop="image" src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' /> 
    <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> 
    <!--price is 1000, a number, with locale-specific thousands separator 
    and decimal mark, and the $ character is marked up with the 
    machine-readable code "USD" --> 
    <span itemprop="priceCurrency" content="USD">$</span> 
    <span itemprop="price" content="1000.00">1,000.00</span> 
    <link itemprop="availability" href="http://schema.org/InStock"/>In stock 
    <link itemprop="availability" href="http://schema.org/InStoreOnly"/>In store only 
    </div> 
    Product description: 
    <span itemprop="description">0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.</span> 
</div> 
+0

我与谷歌商户的东西没有经验,但我猜他们只关心网络商店,对不对?所以从这个角度来看,理解'InStoreOnly'是“缺货” - 因为它不能在线购买。但是OP想传达产品可以在实体店购买,所以对于其他消费者(即那些不仅关心网络商店的人)而言,这肯定是相关的信息。 – unor

相关问题