首页 > 解决方案 > 如何使用自定义文本显示多个优惠和价格?

问题描述

在谷歌富文本搜索引擎优化中,我希望谷歌在搜索中向我的产品页面显示 2 个优惠

Offers
$5 to $15 // the first line
Sale Price: $20 Member Price: $5 // second line



{
      "@context":"http://schema.org",
      "@type":"Product",
      "name":"Different retail prices same compare at prices",
      "image":"//example-img.jpg",
      "description":"V Neck top",
      "brand":{
        "@type":"Brand",
        "name":"My Brand"
      },
      "sku":"1162-BLK-XL",
      "gtin12":"",
      "offers":{
        "@type":"AggregateOffer",
        "url":"/products/XYZ",
        "priceCurrency":"USD",
        "lowPrice":"5.00",
        "highPrice": "15.00",
        "offerCount":"1",
        "itemCondition":"http://schema.org/NewCondition",
        "availability":"http://schema.org/InStock",
        "seller":{
          "@type":"Organization",
          "name":"XYZ"
        },
        "offers": [{
          "type": "Offer",
          "lowPrice": "Sell Price 5.00",
          "highPrice": "Member Price 3.00"
        }]
      }
    }

它只是显示 - 在此处输入图像描述

我怎样才能实现上述目标?

任何帮助,将不胜感激。

标签: schema.orggoogle-rich-snippets

解决方案


推荐阅读