SILJANJ Posted April 2, 2015 Share Posted April 2, 2015 Hallo, kurze Frage in die Runde: Ich nutze PrestaShop in der Cloud, dort ist die aktuelle Version 1.6.0.11. Ich möchte in einem B2B Shop den Preis inkl. und exkl. MWSt. anzeigen (dauerhaft, für alle Kunden - das dürfte ja "rechtssicher" sein? So oder so, es scheint mir als ob die Variablen dafür unterschiedlich sind in den beiden Dateien, was ich als nicht-PHPler auf Anhieb nicht verstehe. In der Datei product-list.tpl bekomme ich mit dieser Ausgabe meinen Wunsch erfüllt: {convertPrice price=$product.price_tax_exc} zuzüglich MWst.<br> ({convertPrice price=$product.price} inkl. MWSt.) In der Datei product.tpl wird der Preis allerdings schlicht mit <span id="our_price_display" itemprop="price">({convertPrice price=$productPrice})</span> ausgegeben (d.h. bei mir der Bruttopreis). Gebe ich dort das ein, was unter product-list.tpl funktioniert, zerhaut's das Layout der Seitenansicht komplett. Irgendwelche Hinweise wären super! :-) Danke und viele Grüße. Link to comment Share on other sites More sharing options...
Whiley Posted April 3, 2015 Share Posted April 3, 2015 Hallo SILJANJ, In der Datei product.tpl wird der Preis allerdings schlicht mit <span id="our_price_display" itemprop="price">({convertPrice price=$productPrice})</span> Probiers mal (vor dieser Zeile) mit: <span id="pretaxe_price"><span id="pretaxe_price_display">{convertPrice price=$product->getPrice(false, $smarty.const.NULL, 2)}</span> {l s='ohne MwSt..'}</span><br /> Grüsse Whiley 1 Link to comment Share on other sites More sharing options...
SILJANJ Posted April 17, 2015 Author Share Posted April 17, 2015 (edited) Hi Whiley! Sorry, wollte mich eigentlich schon früher bei dir bedanken, das hat auf jeden Fall weitergeholfen! Thanks again! Hallo SILJANJ, Probiers mal (vor dieser Zeile) mit: Grüsse Whiley Edited April 17, 2015 by SILJANJ (see edit history) 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