stg Posted April 11, 2005 Report Share Posted April 11, 2005 Hi , Ich habe die suche bentzt aber nix dar?ber gefunden. Ich habe folgendes Problem und zwar. Habe ich 1 Artikel und den in 4 Farben, nun wie kann ich es machen das der Kunde sich die Farbe aus suchen kann und ich es in der Bestellung auch sehe. z.b. 1 T-Shirt Preis 3,99 ? Bitte Farbe aus suchen Gr?n Rot Wei? Blau Ich wollte nicht 4 Artikel eingeben nur weil die Farbe anders ist. Wer weiss was, ? stg Link to comment Share on other sites More sharing options...
chpohl Posted April 11, 2005 Report Share Posted April 11, 2005 geht ?ber Produktoptionen (Artikelmerkmale) im Admin-Bereich Link to comment Share on other sites More sharing options...
stg Posted April 11, 2005 Author Report Share Posted April 11, 2005 Originally posted by chpohl@Apr 11 2005, 18:17 PM geht ?ber Produktoptionen (Artikelmerkmale) im Admin-Bereich Hi , habe da mal gekuckt, aber wirklich kann ich nix damit anfangen in moment :grml: Kannst du mir mal ein beispiel geben was ich da machen muss ? oder einstellen soll , thx stg Link to comment Share on other sites More sharing options...
stg Posted April 11, 2005 Author Report Share Posted April 11, 2005 Hi , Ich noch mal, so nach ein bischen rum probieren hat es gefunzt, danke f?r den tip stg Link to comment Share on other sites More sharing options...
stg Posted April 11, 2005 Author Report Share Posted April 11, 2005 Jetzt habe ich nur ein Problem und zwar steht das jetzt mit auf der rechnung drauf +0.00 ?uro kann man das weg machen ? stg Link to comment Share on other sites More sharing options...
chpohl Posted April 11, 2005 Report Share Posted April 11, 2005 keine Anzeige '+0,00' bei den Produktoptionen: ../templates/DEIN TEMPLATE/module/product_options/DEINE AUSWAHL.html wie folgt ?ndern: {$item_data.TEXT} {if $item_data.PRICE!=''}({$item_data.PREFIX}{$item_data.PRICE} ) ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}) keine Anzeige '+0,00' im Warenkorb: ../templates/DEIN TEMPLATE/module/order_details.html wie folgt ?ndern: {$item_data.PRICE} ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}) Link to comment Share on other sites More sharing options...
stg Posted April 12, 2005 Author Report Share Posted April 12, 2005 allso ergendwie hat es bei mir nicht geklappt , sorry kammen alles ERRORs smarty.php stg Link to comment Share on other sites More sharing options...
chpohl Posted April 12, 2005 Report Share Posted April 12, 2005 bitte genaue fehlermeldung posten .... kann eigentlich nicht sein. Ich vermute, dass dein Editor da irgendwas vermurkst hat Link to comment Share on other sites More sharing options...
smedder Posted April 12, 2005 Report Share Posted April 12, 2005 Originally posted by chpohl@Apr 11 2005, 23:03 PM keine Anzeige '+0,00' bei den Produktoptionen: ../templates/DEIN TEMPLATE/module/product_options/DEINE AUSWAHL.html wie folgt ?ndern: {$item_data.TEXT} {if $item_data.PRICE!=''}({$item_data.PREFIX}{$item_data.PRICE} ) ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}) keine Anzeige '+0,00' im Warenkorb: ../templates/DEIN TEMPLATE/module/order_details.html wie folgt ?ndern: {$item_data.PRICE} ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}) M?sste die Schleife nicht eigentlich mit abschliessenden {/if}-Tags wieder beendet werden?: keine Anzeige '+0,00' bei den Produktoptionen: ../templates/DEIN TEMPLATE/module/product_options/DEINE AUSWAHL.html wie folgt ?ndern: {$item_data.TEXT} {if $item_data.PRICE!=''}{$item_data.PREFIX}{$item_data.PRICE} {/if} ersetzen durch: {if $item_data.PRICE!= 0 }{$item_data.PREFIX}{$item_data.PRICE}{/if} keine Anzeige '+0,00' im Warenkorb: ../templates/DEIN TEMPLATE/module/order_details.html wie folgt ?ndern: {$item_data.PRICE} ersetzen durch: {if $item_data.PRICE!= 0 }{$item_data.PREFIX}{$item_data.PRICE}{/if} Link to comment Share on other sites More sharing options...
chpohl Posted April 12, 2005 Report Share Posted April 12, 2005 st?mmt is beim kopieren wohl fl?ten gegangen :pst: abba die Klammern m?ssen drum rum Link to comment Share on other sites More sharing options...
smedder Posted April 12, 2005 Report Share Posted April 12, 2005 st?mmt nu auch wieder Also nun die Version, wie es richtig ist. keine Anzeige '+0,00' bei den Produktoptionen: ../templates/DEIN TEMPLATE/module/product_options/DEINE AUSWAHL.html wie folgt ?ndern: {$item_data.TEXT} {if $item_data.PRICE!=''}({$item_data.PREFIX}{$item_data.PRICE}) {/if} ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}){/if} keine Anzeige '+0,00' im Warenkorb: ../templates/DEIN TEMPLATE/module/order_details.html wie folgt ?ndern: {$item_data.PRICE} ersetzen durch: {if $item_data.PRICE!= 0 }({$item_data.PREFIX}{$item_data.PRICE}){/if} So sollte es nun eigentlich funktionieren. Link to comment Share on other sites More sharing options...
stg Posted April 12, 2005 Author Report Share Posted April 12, 2005 Hi , Alosi im Warenkorb wird der immer noch mir + 0.00 der Preis angezeigt ob woll sich dei den Artikel ja nur die Farbe g?ndert hat :grml: Aber in der Email kommt der + 0.00 Preis nicht vor das doch schon mal gut stg Link to comment Share on other sites More sharing options...
Jürgen H. Posted April 23, 2005 Report Share Posted April 23, 2005 Hallo, um den 0,00-Preis in der product_info.html bei einer Mehrfachauswahl wegzubekommen - kann man das so ab?ndern? suche: {$PRODUCTS_PRICE} ersetze mit: {if $PRODUCTS_PRICE!=0 }({$PRODUCTS_PREFIX}{$PRODUCTS_PRICE}){/if} Geht das auch in der product_listing_v1.html so einfach? Bedenken? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.