orpheus77 Posted January 17, 2017 Share Posted January 17, 2017 (edited) Hallo, Prestashop 1.6.1.10, PHP 5.6 Bei Artikel mit Benutzereranpassung wird der Artikel auf der Bestellbestätigung doppelt angeführt. Berechnet wird richtig, aber es schaut unprofessionell aus. Hat jemand eine Idee, wie ich das weg bekomme? LG Stefan Edited January 21, 2017 by orpheus77 (see edit history) Link to comment Share on other sites More sharing options...
orpheus77 Posted January 19, 2017 Author Share Posted January 19, 2017 Hallo Leute, hat niemand eine Idee? LG Stefan Link to comment Share on other sites More sharing options...
Shad86 Posted January 19, 2017 Share Posted January 19, 2017 Ich glaube ich würde versuchen per CSS nur die zweite Beschreibung aus zu blenden. Ist aber schwierig nachzuvollziehen. Du könntest einen Link zum Produkt posten damit man den in den Warenkorb packen kann und testen kann. So aus dem Stehgreif kann da glaub ich niemand helfen der es nicht schon selbst machen musste. Also soweit entweder per CSS oder in der cart.tpl die Beschreibung raus schmeissen bzw gucken was genau er da macht, wie man es sich umbauen könnte. Link to comment Share on other sites More sharing options...
orpheus77 Posted January 19, 2017 Author Share Posted January 19, 2017 Hallo und Danke für die Antwort, da werde ich aber Hilfe brauchen :-( Hier der Link zum Produkt: http://shop2.paan-bahn.at/esu/184-loksound-v40.html Das Problem tritt NUR bei Artikeln auf, die eine Benutzeranpassung haben. LG Stefan Link to comment Share on other sites More sharing options...
Shad86 Posted January 19, 2017 Share Posted January 19, 2017 Da wird es sicherlich eine if abfrage geben ob Benutzeranpassung oder nicht. Und die wird man abändern müssen das er die nur anhängt und nicht den kompletten Artikel dupliziert. Ist vielleicht auch garnicht so gewollt sondern ein Fehler im Code. Gucke ich mir mal morgen an, vielleicht ja jemand anderes eher. Link to comment Share on other sites More sharing options...
orpheus77 Posted January 19, 2017 Author Share Posted January 19, 2017 Hallo Shad86, vielen Dank, dass du dir das anschaust! Wenn du irgendwelche files von mir brauchst lass es mich wissen. LG Stefan Link to comment Share on other sites More sharing options...
rictools Posted January 20, 2017 Share Posted January 20, 2017 Ist bei mir auch so, also wohl ein Bug. Der Code für die Bestätigungsmail findet sich in themes/.../mails/de/order_config_product-list.tpl, dort einfach die Zeilen ca. 91, 104 und 130 löschen. Link to comment Share on other sites More sharing options...
orpheus77 Posted January 21, 2017 Author Share Posted January 21, 2017 Hallo, ich glaube unsere Zeilen stimmen nicht überein. Hier mein File - was muss ich löschen? {foreach $list as $product} <tr> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['reference']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>{$product['name']}</strong> </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['unit_price']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['price']} </font> </td> <td width="10"> </td> </tr> </table> </td> </tr> {foreach $product['customization'] as $customization} <tr> <td colspan="2" style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>{$product['name']}</strong><br> {$customization['customization_text']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['unit_price']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$customization['customization_quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$customization['quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> </tr> {/foreach} {/foreach} LG Stefan Link to comment Share on other sites More sharing options...
rictools Posted January 21, 2017 Share Posted January 21, 2017 Hallo, ich glaube unsere Zeilen stimmen nicht überein. Hier mein File - was muss ich löschen? {foreach $list as $product} <tr> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['reference']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>{$product['name']}</strong> </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['unit_price']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['price']} </font> </td> <td width="10"> </td> </tr> </table> </td> </tr> {foreach $product['customization'] as $customization} <tr> <td colspan="2" style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>{$product['name']}</strong><br> {$customization['customization_text']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$product['unit_price']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$customization['customization_quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> <td style="border:1px solid #D6D4D4;"> <table class="table"> <tr> <td width="10"> </td> <td align="right"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {$customization['quantity']} </font> </td> <td width="10"> </td> </tr> </table> </td> </tr> {/foreach} {/foreach} LG Stefan Link to comment Share on other sites More sharing options...
orpheus77 Posted January 21, 2017 Author Share Posted January 21, 2017 DU BIST SPITZE!!!! Hat funktioniert - vielen Dank!!!! LG Stefan Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now