Wenn bei dem Artikel Attribute vorhanden sind, wird der Preis falsch berechnet, da evtl. ausgewählte Attribute nicht berücksichtigt werden... Lösung: in "PriceOfferContentView.inc.php" vor PHP: $gmAttrCalc = new GMAttributesCalculator($products_id, $attributes, $product['products_tax_class_id']); einfügen: PHP: //Avenger $attributes=array(); $attributes_data=$_GET['id']; if (count($attributes_data)) { //Prepare attributes foreach ($attributes_data as $key => $unit) { if ($unit) { $attributes[] = array( 'option' => $key, 'value' => $unit); } } } //Avenger