Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 6765)
+++ /model/wpsg_product.class.php	(revision 6766)
@@ -262,6 +262,6 @@
 			}
 
-		} // public function getProductURL()
-
+		} // public function getProductURL() 
+        
 		public function getDefaultTaxValue()
 		{
@@ -889,4 +889,9 @@
 		} // public function getQueryParts($arFilter = array())
 
+        /**
+         * @param int $product_key
+         * @param bool $noCache
+         * @return wpsg_product
+         */
 		public static function getInstance($product_key, $noCache = false)
 		{
Index: /mods/wpsg_mod_produktartikel.class.php
===================================================================
--- /mods/wpsg_mod_produktartikel.class.php	(revision 6765)
+++ /mods/wpsg_mod_produktartikel.class.php	(revision 6766)
@@ -89,5 +89,5 @@
 			$this->shop->checkDefault('wpsg_mod_produktartikel_showSearch', '0');
 			$this->shop->checkDefault('wpsg_mod_produktartikel_rating', '10');
-			
+            $this->shop->checkDefault('wpsg_mod_produktartikel_postthumbnail', '1');
 			/*
 			 * Posts Tabelle erweitern
@@ -440,5 +440,5 @@
 			$product_target = $this->shop->cache->loadProduct($copy_id);
 
-			$post_content = $this->shop->renderProdukt($copy_id);
+			$post_content = $this->renderProdukt($copy_id);
 			$post_content = $this->clear_post_content($post_content);
 
@@ -944,4 +944,19 @@
         } // public function hasPostId($product_id)
 
+        /**
+         * Gibt die Ausgabe fÃŒr ein Produkt zurÃŒck
+         * Spezielle Render Funktion fÃŒr den Content im Post (SEO)
+         */
+        public function renderProdukt($produkt_id, $force_template = false, $force_locale = false)
+        {
+            
+            $oProduct = wpsg_product::getInstance($produkt_id);
+            
+            $content = $oProduct->getShortDescription().$this->shop->renderProdukt($produkt_id, $force_template, $force_locale);
+            
+            return $content;
+            
+        } // public function renderProdukt($produkt_id, $force_template = false, $force_locale = false)
+        
 		/**
 		 * Gibt die Post_ID anhand einer ProduktID zurÃŒck.
@@ -980,5 +995,5 @@
 						// WPML speichert in extra Post, hier nichts machen
 						$post_title = $product['name'];
-						$post_content = $this->shop->renderProdukt($product_id);
+						$post_content = $this->renderProdukt($product_id);
 
 					}
@@ -999,11 +1014,15 @@
 							if ($produkt_trans['id'] > 0) // Ãbersetzung existiert					{
 							{
+							    
 								$post_title .= '<!--:'.$l['lang'].'-->'.$produkt_trans['name'].'<!--:-->';
-								$post_content .= '<!--:'.$l['lang'].'-->'.$this->shop->renderProdukt($product_id, false, $l['locale']).'<!--:-->';
+								$post_content .= '<!--:'.$l['lang'].'-->'.$this->renderProdukt($product_id, false, $l['locale']).'<!--:-->';
+                                
 							}
 							else // Ãbersetzung existiert nicht, hier trage ich einfach den Originaltext ein
 							{
+							    
 								$post_title .= '<!--:'.$l['lang'].'-->'.$product['name'].'<!--:-->';
-								$post_content .= '<!--:'.$l['lang'].'-->'.$this->shop->renderProdukt($product_id).'<!--:-->';
+								$post_content .= '<!--:'.$l['lang'].'-->'.$this->renderProdukt($product_id).'<!--:-->';
+                                
 							}
 
@@ -1017,5 +1036,5 @@
 
 					$post_title = $product['name'];
-					$post_content = $this->shop->renderProdukt($product_id);
+					$post_content = $this->renderProdukt($product_id);
 
 				}
