testowy Posted August 23, 2015 Share Posted August 23, 2015 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 More sharing options...
0 endriu107 Posted August 23, 2015 Share Posted August 23, 2015 A tak konkretnie to na jakich stronach chcesz to wyświetlać? Link to comment Share on other sites More sharing options...
0 testowy Posted August 23, 2015 Author Share Posted August 23, 2015 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 More sharing options...
0 endriu107 Posted August 23, 2015 Share Posted August 23, 2015 Dodaj warunek sprawdzający czy to jest strona główna do tego kodu, coś w stylu if page name != index Link to comment Share on other sites More sharing options...
0 testowy Posted August 23, 2015 Author Share Posted August 23, 2015 (edited) 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 August 23, 2015 by testowy (see edit history) Link to comment Share on other sites More sharing options...
Question
testowy
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.
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
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