Jump to content

Kolejność wyświetlania cen


Recommended Posts

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:post-767868-0-66531900-1399665913_thumb.jpg

Link to comment
Share on other sites

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

NtcRDkb.png

Link to comment
Share on other sites

×
×
  • Create New...