I have the /div in the middle:
Code:
<!-- microdata start --> <div itemscope itemtype="http://data-vocabulary.org/Product"> <meta itemprop="image" content="<actinic:variable name="CatalogURL" /><actinic:variable name="ProductImageFilenameRaw" />" /> <meta itemprop="identifier" content="mpn:<actinic:variable name="ProductReference" />"/> <meta itemprop="name"content="<actinic:variable name="ProductName" />" /> <meta property="og:type" content="product" /> <meta property="og:title" content="<actinic:variable name="ProductName" />" /> <meta property="og:url" content="<actinic:block php="true">echo '<actinic:variable name="CatalogURL" encoding="perl" selectable="false" />' . basename('<actinic:variable name="ProductPageName" encoding="perl" selectable="false" />');</actinic:block>" /> </div> <div class="purchase_data" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer"> <meta itemprop="condition" content="new" /> <meta itemprop="currency" content="GBP" /> <meta itemprop="price" content="<actinic:block type="pricelist"><actinic:block if="%3cactinic%3avariable%20name%3d%22ListIndex%22%20%2f%3e%20%3d%3d%201"><actinic:variable name="TaxInclusivePrice" selectable="false" /></actinic:block></actinic:block>" /> <meta itemprop="availability" content="In stock" /> <meta itemprop="seller" content="<actinic:variable name="CompanyName" />"/> </div> <!-- microdata end -->
Comment