powerball Posted April 17, 2004 Report Share Posted April 17, 2004 Wenn ich bei einem Artikel Attribute benutze und der z.b. in rot , gelb und gr?n lieferbar ist ... wobei rot +0.00 euro und die anderen z.b. +5.00 Euro. Meine Frage, kann ich das irgendwo einstellen das (wenn jemand den roten Artikel haben m?chte) die 0.00 Euro nicht angezeigt wird ??? Ich finde es etwas st?rend bzw. auch verwirrend Link to comment Share on other sites More sharing options...
mzanier Posted April 18, 2004 Report Share Posted April 18, 2004 zb das in der product_attributes.php $price='Kein Aufpreis'; if ($products_options['options_values_price']!='0.00') { $price = xtc_format_price(xtc_get_products_attribute_price($products_options['options_values_price'], $tax_class=$product_info['products_tax_class_id'],$price_special=0,$quantity=1,$prefix=$products_options['price_prefix']),1,0,1); } Link to comment Share on other sites More sharing options...
Mike666 Posted April 18, 2004 Report Share Posted April 18, 2004 jo, da muss ich auch nochmal nachhaken: ich m?chte den eigentlichen Artikel nicht gro? 0,00 ? anzeigen lassen, sondern es soll nichts da stehen. die Preise der Artikel sollen rein durch die Attribute entstehen. macbar, das dort oben rechts nichts steht? danke Link to comment Share on other sites More sharing options...
mzanier Posted April 18, 2004 Report Share Posted April 18, 2004 achso, dein grundartikel kostet 0.00 ? dann musst du halt in der product_info.php solch ne abfrage einbauen. Link to comment Share on other sites More sharing options...
Mike666 Posted April 18, 2004 Report Share Posted April 18, 2004 Tja, wenn man wei? wie ... Link to comment Share on other sites More sharing options...
mzanier Posted April 18, 2004 Report Share Posted April 18, 2004 if (xtc_get_products_price($product_info['products_id'], $price_special=0, $quantity=1)!='0.00') { $products_price=xtc_get_products_price($product_info['products_id'], $price_special=1, $quantity=1); } else { $products_price=''; Link to comment Share on other sites More sharing options...
powerball Posted April 18, 2004 Author Report Share Posted April 18, 2004 Super .... und jetzt setze ich noch einen drauf. Wenn der Grundartikel rot=10 Euro kostet und der gelbe + 5 Euro. Kann das dann auch in der product_artibutes so ge?nbdert werden das da nicht +5.00 euro steht sondern 15.- Euro ???? Link to comment Share on other sites More sharing options...
mzanier Posted April 18, 2004 Report Share Posted April 18, 2004 hm ja, aber das programmier ich nicht vor, ist etwas aufwendiger. jedoch ist deine l?sung nicht wirklich brauchbar. was tun wenn du 2 optionen hast ? dann kennt sich keiner mehr aus. und dann steht ja oben 10, und in der lste 15, f?rn kunden und auch f?r mich sind das 25 Link to comment Share on other sites More sharing options...
powerball Posted April 18, 2004 Author Report Share Posted April 18, 2004 Originally posted by mzanier@Apr 18 2004, 21:59 PM hm ja, aber das programmier ich nicht vor, ist etwas aufwendiger. jedoch ist deine l?sung nicht wirklich brauchbar. was tun wenn du 2 optionen hast ? dann kennt sich keiner mehr aus. und dann steht ja oben 10, und in der lste 15, f?rn kunden und auch f?r mich sind das 25 Ok, hast auch wieder recht, k?nnte sehr verwirrend werden. Aber dennoch muss ich noch eine frage diesebz?glich stellen. Kann ich den o.g. Code auch dort einf?gen wo der Warenkorb angezeit wird $price='Kein Aufpreis'; if ($products_options['options_values_price']!='0.00') { $price = xtc_format_price(xtc_get_products_attribute_price($products_options['options_values_price'], $tax_class=$product_info['products_tax_class_id'],$price_special=0,$quantity=1,$prefix=$products_options['price_prefix']),1,0,1); } Denn dort werden immer noch die +o.oo euro angezeit ?? Markus Link to comment Share on other sites More sharing options...
mzanier Posted April 18, 2004 Report Share Posted April 18, 2004 1:1 einf?gen kannst du das nicht, das musst du nat?rlich dort an die variablen anpassen. Link to comment Share on other sites More sharing options...
powerball Posted April 18, 2004 Author Report Share Posted April 18, 2004 Originally posted by mzanier@Apr 18 2004, 22:03 PM 1:1 einf?gen kannst du das nicht, das musst du nat?rlich dort an die variablen anpassen. :i: UND NUN DIE BELIEBTE FRAGE: WO und WIe ... ich bin der absolute Profie was PHP angeht ... Du verstehst wie ich das meine ? Spass beiseite. In der Shopping_Cart.php? Tx f?r jeden Tipp :pst: Link to comment Share on other sites More sharing options...
Mike666 Posted April 19, 2004 Report Share Posted April 19, 2004 versuche mal das hier: if (xtc_get_products_price($product_info['products_id'], $price_special=0, $quantity=1)!='0.00') { $products_price=xtc_get_products_price($product_info['products_id'], $price_special=1, $quantity=1); } else { $products_price=''; in der product_info.php abzu?ndern in: if (xtc_get_products_price($product_info['products_id'], $price_special=0, $quantity=1)!='') { $products_price=xtc_get_products_price($product_info['products_id'], $price_special=1, $quantity=1); } else { $products_price=''; Und schreib, was passiert Link to comment Share on other sites More sharing options...
Mike666 Posted April 19, 2004 Report Share Posted April 19, 2004 Aber noch eine Zusatzfrage: Wenn ich verschiedene Benutzergruppen habe, die auch verschiedene Preise zugeordnet bekommen, wie kann ich dann die Attribute individuell gestalten, oder ist das ?berhaupt machbar? Also wenn jemand etwas billiger bekommt, dann soll ja auch das jeweilige Attribut in seiner Option ggf. g?nstiger sein ... :pst: Link to comment Share on other sites More sharing options...
mzanier Posted April 19, 2004 Report Share Posted April 19, 2004 bei attributen sind (noch) keine gruppenbezogenen preise m?glich. Link to comment Share on other sites More sharing options...
powerball Posted April 19, 2004 Author Report Share Posted April 19, 2004 Originally posted by Mike666@Apr 19 2004, 09:16 AM versuche mal das hier: if (xtc_get_products_price($product_info['products_id'], $price_special=0, $quantity=1)!='0.00') { $products_price=xtc_get_products_price($product_info['products_id'], $price_special=1, $quantity=1); } else { $products_price=''; Welche Datei denn ? Tx Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.