piotrade Posted May 9, 2014 Share Posted May 9, 2014 Witam Potrzebuję zmienić kolejność wyświetlania cen na stronie głównej (presta 1.6). W pierwszej kolejności chciałbym mieć wyświetlaną starą cenę przekreśloną a za nią cenę aktualną. Próbowałem na dwa sposoby: 1) CSS dla ceny aktualnej float:right; oraz ustawienie prawego marginesu - niestety przy zwężeniu strony napis wysuwa się lub chowa poza obrys zdjęcia 2) zmiana kolejności kodu w product_list.tpl - działa tylko gdy podana jest stara cena, natomiast w ogóle nie wyświetla ceny aktualnej po najechaniu kursorem na zdjęcie Bardzo proszę o pomoc. Tak wyglądają ceny, które chciałbym zmienić miejscami: Link to comment Share on other sites More sharing options...
vekia Posted May 9, 2014 Share Posted May 9, 2014 product-list.tpl skorzystaj z tego kodu {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)} {if isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0} <span class="old-price product-price"> {displayWtPrice p=$product.price_without_reduction} </span> {if $product.specific_prices.reduction_type == 'percentage'} <span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span> {/if} {/if} <span itemprop="price" class="price product-price"> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} </span> <meta itemprop="priceCurrency" content="{$priceDisplay}" /> {/if} zamiast: {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)} <span itemprop="price" class="price product-price"> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} </span> <meta itemprop="priceCurrency" content="{$priceDisplay}" /> {if isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0} <span class="old-price product-price"> {displayWtPrice p=$product.price_without_reduction} </span> {if $product.specific_prices.reduction_type == 'percentage'} <span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span> {/if} {/if} {/if} efekt Link to comment Share on other sites More sharing options...
piotrade Posted May 10, 2014 Author Share Posted May 10, 2014 Super! Działa pięknie Wielkie dzięki za pomoc! Pozdrawiam Link to comment Share on other sites More sharing options...
Recommended Posts