Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 7164)
+++ /model/wpsg_product.class.php	(revision 7165)
@@ -798,4 +798,18 @@
 			}
 
+            if (isset($arFilter['order']) && $arFilter['order'] === 'price') {
+
+                uasort($arReturn, function($a, $b) {
+
+                    if (!is_object($a)) $a = wpsg_product::getInstance($a);
+                    if (!is_object($b)) $b = wpsg_product::getInstance($b);
+
+                    if ($a->getMinPrice() == $b->getMinPrice()) return 0;
+                    return ($a->getMinPrice() < $b->getMinPrice())?-1:1;
+
+                } );
+
+            }
+
 			return $arReturn;
 
Index: /mods/wpsg_mod_produktartikel.class.php
===================================================================
--- /mods/wpsg_mod_produktartikel.class.php	(revision 7164)
+++ /mods/wpsg_mod_produktartikel.class.php	(revision 7165)
@@ -728,5 +728,5 @@
                     'taxonomies' => array($this->shop->get_option('wpsg_mod_produktartikel_pathkey_cat')),
                     'has_archive' => true,
-                    'supports' => array('title', 'editor', 'thumbnail')
+                    'supports' => array('title', 'editor', 'thumbnail', 'page-attributes')
                 )
             );
@@ -889,6 +889,7 @@
                         ]
                     ],
-                    'ordery' => 'menu_order',
+                    'orderby' => 'menu_order',
                     'order' => 'ASC',
+                    'offset' => 0,
                     'posts_per_page' => '1'
                 ]);
