BlogJack Posted September 23, 2009 Report Share Posted September 23, 2009 Hallo, vielleicht kan mir jemand weiterhelfen. Würde gerne den Brutto und Nettopreis anzeigen lassen (reiner B2B Shop). Kennt jemand den Code für die Nettopreis und Bruttopreis Ausgabe ? Ich denke das ganze muss in die price.htm Vielen Dank Link to comment Share on other sites More sharing options...
finanzkanzlei Posted September 24, 2009 Report Share Posted September 24, 2009 Hallo, ich habe aus bei mir so gelösst: Zeile 333 in der class.price.php return array ('formated' => $tpl_price, 'plain' => $price, 'plain_otax' => $price_otax); ändern in return array ('formated' => $tpl_price, 'plain' => $price, 'plain_otax' => $price_otax, 'formatedotax' => $Fprice_otax);[/code] In der product_listing_v1.html könnte es dann so aussehen: [code]<p class="price">Brutto: {$module_data.products_price.formated}</p> <p class="price">Netto: {$module_data.products_price.formatedotax}</p> [/code] mfg Link to comment Share on other sites More sharing options...
sbh Posted April 14, 2010 Report Share Posted April 14, 2010 in der product_listing_v1.html klappt das prima warum klappt es nicht wenn ich den wert für netto in die product.html packe? also in die eigentliche artikel-(eigene)-seite Link to comment Share on other sites More sharing options...
amilo Posted April 15, 2010 Report Share Posted April 15, 2010 Hallo, in der product.html muss das module_data. weg. Die Variable sieht dann so aus: {$products_price.formatedotax}[/code] MfG. Hansen Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.