cassiopeus Posted November 19, 2012 Share Posted November 19, 2012 Dobrý den, mám problém se zobrazováním breadcrumbs. Když kliknu na kategorii, mám v BC kategorii Když kliknu na podkategorii, mám v BC kategorii / podkategorii Když pak rozkliknu produkt, mám v BC jen název produktu. Dá se nějak dosáhnout, aby se i po kliknutí na výrobek zobrazovalo buď Kategorie/podkategorie/ nebo Kategorie/podkategorie/výrobek ? Mám zrušené zobrazování názvů kategorií a podkategorií na hlavní stránce (zobrazuji jen počet produktů). Upravil jsem proto kód category.tpl (zrušil jsem zobrazování některých částí). {include file="$tpl_dir./breadcrumb.tpl"} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {* * Zobrazení kategorie / podkategorie na hlavní stránce <h1> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} </h1> * *} {* * Zobrazení počtu produktů / není žádný produkt * *} <div class="resumecat category-product-count"> {include file="$tpl_dir./category-count.tpl"} </div> {* * Zobrazení podkategorií na hlavní stránce *} {* {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat"> {if $scenes} <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {else} <!-- Category image --> {if $category->id_image} <div class="align_center"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" /> } </div> {/if} {/if} {if $category->description} <div class="cat_desc"> {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} <p>{$category->description}</p> {/if} </div> {/if} </div> {/if} {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories"> <h3>{l s='Subcategories'}</h3> <ul class="inline_list"> {foreach from=$subcategories item=subcategory} <li class="clearfix"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img"> {if $subcategory.id_image} * *obrázek před názvem podkategorie na hlavní stránce * * * <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a> {if $subcategory.description} <p class="cat_desc">{$subcategory.description}</p> {/if} </li> {/foreach} </ul> <br class="clear"/> </div> {/if} *} {if $products} <div class="content_sortPagiBar"> {include file="$tpl_dir./pagination.tpl"} <div class="sortPagiBar clearfix"> {include file="./product-sort.tpl"} {include file="./product-compare.tpl"} {include file="./nbr-product-page.tpl"} </div> </div> {include file="./product-list.tpl" products=$products} <div class="content_sortPagiBar"> <div class="sortPagiBar clearfix"> {include file="./product-sort.tpl"} {include file="./product-compare.tpl"} {include file="./nbr-product-page.tpl"} </div> {include file="./pagination.tpl"} </div> {/if} {elseif $category->id} <p class="warning">{l s='This category is currently unavailable.'}</p> {/if} {/if } Link to comment Share on other sites More sharing options...
berka.pavel Posted November 20, 2012 Share Posted November 20, 2012 Pokud vím, tak hlavní je pro tebe v tuto chvíli product.tpl - z této šablony se zobrazuje stránka konkrétního produktu. Link to comment Share on other sites More sharing options...
cassiopeus Posted November 20, 2012 Author Share Posted November 20, 2012 Tomu rozumín (tedy, asi chápu, co mi chcete říct). Jediné, co mi uniká je, jak se tam tvoří cesta pro breadcrumbs. Link to comment Share on other sites More sharing options...
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