Index: /changelog
===================================================================
--- /changelog	(revision 7903)
+++ /changelog	(revision 7904)
@@ -460,4 +460,5 @@
 - Bugfix: Weitere Kundendaten werden in Admin- und Kundenmail und Bestellverwaltung angezeigt
 - Bugfix: Sortierung nach Preis Ab- und Austeigend korrigiert (Produktansichten / Theme)
+- Bugfix: Meta Daten (schema.org) repariert/erweitert im Standard Produkttemplate
 - Change: Mit Rechnunskorrektur Statuswechsel optional mÃ¶glich
 - Change: Im Produkt im Backend werden jetzt alle Produktvariablen angezeigt nicht nur die beim bestellen gesetzen
Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 7903)
+++ /model/wpsg_product.class.php	(revision 7904)
@@ -160,4 +160,13 @@
 
 		} // public function getShortDescription()
+
+		/**
+		 * Gibt die Produktnummer / SKU zurÃŒck
+		 */
+		public function getProductNr() {
+
+			return $this->__get('anr');
+
+		}
 
 		/**
Index: /views/produkttemplates/standard.phtml
===================================================================
--- /views/produkttemplates/standard.phtml	(revision 7903)
+++ /views/produkttemplates/standard.phtml	(revision 7904)
@@ -24,7 +24,7 @@
 
 		<?php if (!$this->titleDisplayed) { ?>
-			<h1 itemprop="name" class="wpsg_producttitle"><?php echo $this->getProductName($this->view['data']['id']); ?></h1>
-			<h2 itemprop="detailname" class="wpsg_productdetailtitle"><?php echo $this->view['data']['detailname']; ?></h2>	
-		<?php } ?>
+			<h1 class="wpsg_producttitle"><?php echo $this->getProductName($this->view['data']['id']); ?></h1>
+			<h2 class="wpsg_productdetailtitle"><?php echo $this->view['data']['detailname']; ?></h2>
+		<?php }  ?>
 
 		<?php $this->callMods('product_top_afterheadline', array(&$this->view['data']['id'], $this->getTemplateIndex())); ?>
@@ -35,4 +35,8 @@
 
 	<div itemscope itemtype="http://schema.org/Product" class="wpsg_produkt wpsg_produkt_<?php echo $this->view['data']['id']; ?>">
+
+        <meta itemprop="name" content="<?php echo wpsg_hspc($this->getProductName($this->view['data']['id'])); ?>" />
+        <meta itemprop="sku" content="<?php echo wpsg_hspc($oProduct->getProductNr()); ?>" />
+        <meta itemprop="detailname" content="<?php echo wpsg_hspc($this->view['data']['detailname']); ?>" />
 
 		<?php /* Block fÃŒr die Produktbilder START */ ?>
@@ -53,8 +57,10 @@
 
 				<?php if (sizeof($arAttachmentIDsAll) > 0) { for ($i = 0; $i < sizeof($arAttachmentIDsAll); $i ++) { ?>
-					
+
 					<?php /* URL fÃŒr die Lightbox */ ?>
 					<?php $att = wp_get_attachment_image_src($arAttachmentIDsAll[$i], array(800, 600), false); ?>
-					
+
+                    <meta itemprop="image" content="<?php echo $att[0]; ?>" />
+
 					<a <?php if ($arAttachmentIDsAll[$i] != $arAttachmentID) echo 'style="display:none;"'; ?> rel="gallery-wpsg-<?php echo $this->getTemplateIndex(); ?>" title="<?php echo $this->getProductName($this->view['data']['id']); ?>" href="<?php echo $att[0]; ?>" class="thickbox">
 
@@ -87,5 +93,6 @@
 			<div itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="wpsg_produkt_preis">
 
-				<meta itemprop="priceCurrency" content="<?php echo $this->get_option('wpsg_currency'); ?>" />
+                <meta itemprop="priceCurrency" content="<?php echo $this->get_option('wpsg_currency'); ?>" />
+                <meta itemprop="price" content="<?php echo $this->view['oProduct']->getPrice($this->view['data']['product_key']); ?>" />
 
 				<?php echo __('StÃŒckpreis:', 'wpsg'); ?>
