Jump to content
  • 0

Wyświetlanie cech produktu na dowolnej stronie


testowy

Question

Witam,

 

Potrzebuję fragmentu kodu, który pozwoliłby mi na wyświetlanie cech produktu na dowolnej stronie.

 

Oto kod, którym wyświetlam cechy na stronie - niestety nie działa on na innych stronach.

<div id="information">
<!-- Data sheet -->
<section class="page-product-box">
    <h3 class="page-product-heading informacje-heading">{l s='Data sheet'}</h3>
    {foreach from=$features item=feature}
        {if isset($feature.value)}
            <p><span class="information-feature-name">{$feature.name|escape:'html':'UTF-8'}: </span><span "information-feature-value">{$feature.value|escape:'html':'UTF-8'}</span></p>
        {/if}
    {/foreach}
</section>
<!--end Data sheet -->

W tym temacie pytanie było całkiem podobne: http://stackoverflow.com/questions/31890767/presta-display-sku-under-products-name-on-any-page

 

Nie potrafię jednak przerobić ww. kodów aby osiągnąć to co potrzebuję.

Pozdrawiam :)

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Głównie na stronie z kategoriami. W tym temacie udało mi się znaleźć odpowiedź : https://www.prestashop.com/forums/topic/318019-display-features-in-product-list-product-page/

Działa, ale chciałbym by wyświetlało się to np. na stronie kategorii, ale nigdy na stronie głównej. Jak wyłączyć kod dla strony głównej, jeśli obie strony ładują tę część kodu z tego samego miejsca tj. product-list.tpl?

Link to comment
Share on other sites

  • 0

Już działa, dzięki za pomoc! :)

 

Sprawdziłem źródło strony głównej - body miało przypisaną nazwę: "index".

{if $page_name != 'index'}
    <div class="features">
        {foreach from=$product.features item=feature}
            <div>
                <span>{$feature.name}: {$feature.value}</span>
            </div>
	{/foreach}
    </div>	
{/if}
Edited by testowy (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...