karelzemek Posted January 19, 2011 Share Posted January 19, 2011 Ahoj, řeším jak zobrazit dvojí ceny (s dph a bez dph) v detailu produktu, když má produkt definované atributy a každý z nich má jinou cenupátral jsem zde na fóru a našel radu - v product.tpl jsem přepsal toto: {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if $priceDisplay == 1} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {if $tax_enabled}{l s='tax excl.'}{/if} na toto: {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {if $tax_enabled}{l s='tax excl.'}{/if} {/if} Zobrazí se obě ceny, jenže při navolení nějakého z atributů se změní jen cena s DPH, cena bez DPH se nezmění (zůstane na hodnotě defaultního atributu).Obě ceny chci zobrazit jen v detailu produktu, proto jsem měnil jen product.tplNevíte někdo jak problém vyřešit? DÍKY! Link to comment Share on other sites More sharing options...
tuk66 Posted January 20, 2011 Share Posted January 20, 2011 Matně se mi vybavuje, že jsem se dostal onehdy do kontaktu s cenami na stránce detailu produktu a je to tam řešené přes Javascript. 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