props Posted January 15, 2014 Share Posted January 15, 2014 Każdy produkt ma jedną z cech wagę lub pojemność jak wyświetlić jedną z nich w produktach koło producenta i indeksu? Np. żeby wyświetlić producenta trzeba było wprowadzić: <p id="manufacturer_name" {if !$product->manufacturer_name}style="display: none;"{/if}><label for="manufacturer_name">{l s='Manufacturer :'} </label> <span class="editable">{$product->manufacturer_name|escape:'htmlall':'UTF-8'}</span></p> Zapewne chodzi o coś w miejsce "manufacturer_name" no i warunek, żeby wyświetlić tylko tą cechę, które jest uzupełniona. Link to comment Share on other sites More sharing options...
0 tyszek Posted January 16, 2014 Share Posted January 16, 2014 zobacz taki kod: {foreach from=$features item=feature} <label>{$feature.name|escape:'htmlall':'UTF-8'}</label> {if isset($feature.value)} <span class="editable" style="font-size:12px;">{$feature.value|escape:'htmlall':'UTF-8'}</span> {/if} {/foreach} Link to comment Share on other sites More sharing options...
0 props Posted January 16, 2014 Author Share Posted January 16, 2014 Działa doskonale, tylko teraz już nie potrzebuję zakładki opis w produktach. Wydaje mi się, że pojawiła się jak dodałem cechy. Czy można ją jakoś usunąć? Link to comment Share on other sites More sharing options...
0 vekia Posted January 17, 2014 Share Posted January 17, 2014 w pliku product.tpl trzeba usunąć: {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if} oraz: {if isset($product) && $product->description} <!-- full description --> <div id="idTab1" class="rte">{$product->description}</div> {/if} ale czy aby na pewno mowa o zakładce z opisem? (more info?) Link to comment Share on other sites More sharing options...
0 props Posted January 17, 2014 Author Share Posted January 17, 2014 Nie chodzi o "more info" (więcej informacji) tylko o "opis", który na stronie szablonu w oryginale wyświetlał "Data sheet". Zakładka ta pojawia się tylko jak produkt ma uzupełniona jakąś cechę np. wagę lub objętość. Teraz chciałem ją usunąć, bo to info daje bezpośrednio pod informacją o dostawcy i dodatkowa zakładka mi nie jest potrzebna. Link to comment Share on other sites More sharing options...
0 vekia Posted January 17, 2014 Share Posted January 17, 2014 mój bład ten sam plik, tylko usunąć trzeba: {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if} oraz {if isset($features) && $features} <!-- product's features --> <ul id="idTab2" class="bullet"> {foreach from=$features item=feature} {if isset($feature.value)} <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} </ul> {/if} Link to comment Share on other sites More sharing options...
0 props Posted January 17, 2014 Author Share Posted January 17, 2014 Aha czyli trzeba "na żywca" wycinać kod. Myślałem, że jakiś moduł lub przegapiłem ustawienie. Dzięki. Link to comment Share on other sites More sharing options...
Question
props
Każdy produkt ma jedną z cech wagę lub pojemność jak wyświetlić jedną z nich w produktach koło producenta i indeksu?
Np. żeby wyświetlić producenta trzeba było wprowadzić:
<p id="manufacturer_name" {if !$product->manufacturer_name}style="display: none;"{/if}><label for="manufacturer_name">{l s='Manufacturer :'} </label> <span class="editable">{$product->manufacturer_name|escape:'htmlall':'UTF-8'}</span></p>
Zapewne chodzi o coś w miejsce "manufacturer_name" no i warunek, żeby wyświetlić tylko tą cechę, które jest uzupełniona.
Link to comment
Share on other sites
6 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