Avoknahluk Posted September 14, 2020 Share Posted September 14, 2020 Ahoj, snažila jsem se dohledat, ale tenhle problém jsem nikde nenašla. Mám u produktu co stojí 95 Kč nastavené množstevní slevy (od 3 ks je cena 90Kč/ks, od 5 ks 85 Kč/ks) a pokud na stránce produktu navolím požadovaný počet ks (třeba 3) tak místo zlevněné ceny tj. 90 Kč se ukáže -90Kč či -5Kč (podle nastavení speciální ceny). Což je pro zákazníka strašně matoucí. Navíc tabulka množstevních slev je taky podivná (jde nějak odstranit ten třetí sloupec?). Nevěděl byste si prosím někdo s tímto rady? Verze 1.6.1.18 Link to comment Share on other sites More sharing options...
TheGreatGodOm Posted September 15, 2020 Share Posted September 15, 2020 Dobrý deň, zmazanie posledného stĺpca tabuľky je pravdepodobne možné len úpravou .tpl súboru (konkrétne sa jedná o súbor product-discounts.tpl) máte tam niečo ako {foreach from=$product.quantity_discounts item='quantity_discount' name='quantity_discounts'} <tr data-discount-type="{$quantity_discount.reduction_type}" data-discount="{$quantity_discount.real_value}" data-discount-quantity="{$quantity_discount.quantity}"> <td>{$quantity_discount.quantity}</td> <td>{$quantity_discount.discount}</td> <td>{l s='Up to %discount%' d='Shop.Theme.Catalog' sprintf=['%discount%' => $quantity_discount.save]}</td> </tr> {/foreach} zmeňte to na {foreach from=$product.quantity_discounts item='quantity_discount' name='quantity_discounts'} <tr data-discount-type="{$quantity_discount.reduction_type}" data-discount="{$quantity_discount.real_value}" data-discount-quantity="{$quantity_discount.quantity}"> <td>{$quantity_discount.quantity}</td> <td>{$quantity_discount.discount}</td> </tr> {/foreach} Čo sa týka ceny, aké hodnoty tam píšte? Podľa premenných v tej tabuľke totiž vypisuje zľavu, nie cenu za tovar, ak chcete cenu po zľave treba to upraviť v tomto kóde Link to comment Share on other sites More sharing options...
Avoknahluk Posted September 15, 2020 Author Share Posted September 15, 2020 Děkuji, našla jsem tu tabulku pouze přímo v product.tpl (product-discount.tpl jsem vůbec nenašla), akorát se to na stránce vůbec neprojevilo.. Cenu u přidání do košíku bych nejradši aby to zobrazovalo finální po slevě, což tak nějak zobrazuje, ale potřebuju se hlavně zbavit toho znaménka minus, protože záporná cena produktu je hrozná blbina 😞 Link to comment Share on other sites More sharing options...
TheGreatGodOm Posted September 15, 2020 Share Posted September 15, 2020 Napíšem Vám správu 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