I'm using this as a rich snippet, all works well except the product image URL - can anyone tell me how it should be
This:
<!-- rich snippets BEGIN -->
<div itemscope itemtype="http://data-vocabulary.org/Product">
<meta itemprop="currency" content="GBP" />
<meta itemprop="price" content=<actinic:variable name="ProductPriceRaw" /> />
<meta itemprop="brand" content="<actinic:variable name="brand" />" />
<meta itemprop="image" content="<actinic:variable name="CatalogURL" /><actinic:variable name="SectionImageFileName" />" />
<meta itemprop="condition" content="new"> />
<meta itemprop="identifier" content="<actinic:variable name="gtin" />" />
<meta itemprop="category" content="<actinic:variable name="google_product_category" /> "/>
</div>
<!-- Rich snippets END -->
Produces:
<div itemscope itemtype="http://data-vocabulary.org/Product">
<meta itemprop="currency" content="GBP" />
<meta itemprop="price" content=13.18 />
<meta itemprop="brand" content="Wells Poultry Equipment" />
<meta itemprop="image" content="http://www.chicken-house.co.uk/acatalog/images\grey_egg_box_135.jpg" />
<meta itemprop="condition" content="new"> />
<meta itemprop="identifier" content="2147483647" />
<meta itemprop="category" content="Animals > Pet Supplies "/></div>
but the image should be:
http://www.chicken-house.co.uk/acatalog/grey_egg_box_300.jpg
Any idea what i'm doing wrong?
This:
<!-- rich snippets BEGIN -->
<div itemscope itemtype="http://data-vocabulary.org/Product">
<meta itemprop="currency" content="GBP" />
<meta itemprop="price" content=<actinic:variable name="ProductPriceRaw" /> />
<meta itemprop="brand" content="<actinic:variable name="brand" />" />
<meta itemprop="image" content="<actinic:variable name="CatalogURL" /><actinic:variable name="SectionImageFileName" />" />
<meta itemprop="condition" content="new"> />
<meta itemprop="identifier" content="<actinic:variable name="gtin" />" />
<meta itemprop="category" content="<actinic:variable name="google_product_category" /> "/>
</div>
<!-- Rich snippets END -->
Produces:
<div itemscope itemtype="http://data-vocabulary.org/Product">
<meta itemprop="currency" content="GBP" />
<meta itemprop="price" content=13.18 />
<meta itemprop="brand" content="Wells Poultry Equipment" />
<meta itemprop="image" content="http://www.chicken-house.co.uk/acatalog/images\grey_egg_box_135.jpg" />
<meta itemprop="condition" content="new"> />
<meta itemprop="identifier" content="2147483647" />
<meta itemprop="category" content="Animals > Pet Supplies "/></div>
but the image should be:
http://www.chicken-house.co.uk/acatalog/grey_egg_box_300.jpg
Any idea what i'm doing wrong?
Comment