Chris86 Posted November 21, 2014 Share Posted November 21, 2014 Hallo, ich habe jetzt mal einen Shop mit Prestashop erstellt, allerdings zeigt dieser nicht die MWST an sonder nur die nettppreise ohne MWST. Wie kann ich das umstellen Habe gelesen das man sogar deutlich im Shop angezeigt werden muss das 19% mwst enthalten sind gibts da irgendeine Funktion oder ein Modul für? Danke schonmal für eure Hilfe Link to comment Share on other sites More sharing options...
sigls Posted November 21, 2014 Share Posted November 21, 2014 meine lieblingsfrage, ich hab mir anfangs auch die augen wund gesucht..... in den Gruppen (Menüpunkt Kunden/Gruppen) eingestellen dass der Preis brutto angezeigt wird, daran liegt es normalerweise..... zu deiner zweiten frage, das gehört in die kategorie rechtssicherheit ist nicht in einem satz beantwortet, aber im Forumsbereich http://www.prestashop.com/forums/forum/198-anpassung-an-deutsches-recht/ wirst du sicher fündig werden..... 2 Link to comment Share on other sites More sharing options...
Chris86 Posted November 21, 2014 Author Share Posted November 21, 2014 Hey vielen Dank, kennst du auch noch eine Möglichkeit hinter dem Preis incl. MWST anzeigen zu lassen? Habe jetzt EU LEgal installiert, was mir schonmal viel im Bestellprozess erleichtert hat. Link to comment Share on other sites More sharing options...
Chris86 Posted November 22, 2014 Author Share Posted November 22, 2014 Kann mir hier keiner helfen, will das es so aussieht: Link to comment Share on other sites More sharing options...
Whiley Posted November 22, 2014 Share Posted November 22, 2014 Hallo Chris, Kann mir hier keiner helfen... verrate uns welche PS-Version und welches Template du verwendest. Auch ein Link zu deinem Shop wäre hilfreich, Grüsse Whiley Link to comment Share on other sites More sharing options...
Chris86 Posted November 23, 2014 Author Share Posted November 23, 2014 Hi, ich verwende PrestaShop™ 1.6.0.8 Und habe folgendes Template: http://addons.prestashop.com/en/food-drinks/17139-electronic-cigarettes-store.html Die Seite will ich jetzt nicht Zeigen da sie schon unter der richtigen Domain läuft und ich leicht abzumahnen wäre. Aber ich denke du weißt dann schon ungefair was ich will oder? Neben dem Preis das anzuzeigen muss ja möglich sein oder :-) vielen Dank schonmal für deine Hilfe Link to comment Share on other sites More sharing options...
Whiley Posted November 23, 2014 Share Posted November 23, 2014 Hallo Chris, ich kenne dein Template nicht, vermute aber, dass die eu-legal hooks z.B. in der produkt.tpl fehlen. Es müssten dort vorhanden sein: {hook h=”displayProductDeliveryTime” product=$product} {hook h=”displayProductPriceBlock” product=$product type=”price”} {hook h=”displayProductPriceBlock” product=$product type=”old_price”} {hook h=”displayProductPriceBlock” product=$product type=”unit_price”} {hook h=”displayProductPriceBlock” product=$product type=”weight”} Grüsse Whiley Link to comment Share on other sites More sharing options...
Chris86 Posted November 23, 2014 Author Share Posted November 23, 2014 Hallo Chris, ich kenne dein Template nicht, vermute aber, dass die eu-legal hooks z.B. in der produkt.tpl fehlen. Es müssten dort vorhanden sein: {hook h=”displayProductDeliveryTime” product=$product} {hook h=”displayProductPriceBlock” product=$product type=”price”} {hook h=”displayProductPriceBlock” product=$product type=”old_price”} {hook h=”displayProductPriceBlock” product=$product type=”unit_price”} {hook h=”displayProductPriceBlock” product=$product type=”weight”} Grüsse Whiley Hey Whiley, das ist da Problem, finde unter module --> Positionen diese Produkt.tpl garnicht. Was kann ich nun tun? Link to comment Share on other sites More sharing options...
Whiley Posted November 23, 2014 Share Posted November 23, 2014 Hallo Chris, die product.tpl (produkt.tpl= mein Tippfehler) ist kein Modul, du findest die Datei auf deinem Web-Space unter: /themes/DeinTheme/product.tpl Aufmachen kannst du sie mit einem editor (z.B. notepad++) etwas Ahnung von html/php/smarty solltest du allerdings haben. Grüsse Whiley Link to comment Share on other sites More sharing options...
Chris86 Posted November 23, 2014 Author Share Posted November 23, 2014 Ja ich kann PHP/HTML und bin auch relativ fit nur das CMS liegt mir nicht... habe mal die Datei angehangen, weiß jetzt nicht wo ich da was ändern soll. http://pastebin.com/2A4YZHGR Link to comment Share on other sites More sharing options...
Chris86 Posted November 23, 2014 Author Share Posted November 23, 2014 Ja ich kann PHP/HTML und bin auch relativ fit nur das CMS liegt mir nicht... habe mal die Datei angehangen, weiß jetzt nicht wo ich da was ändern soll. http://pastebin.com/2A4YZHGR konnte es lösen ich muss folgende Sachen ändern In der Poduct.tpl lines 261-263 Code <!--{if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))} {if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if}--> Ändern in: {if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))} {if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} line 273 <!-- {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} --> Ändern in: {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} 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