Maurizio Fabbri Posted March 7, 2014 Share Posted March 7, 2014 Hello, my Prestashop version is 1.4.11.0. I have a problem with the CATEGORY LOGO / CATEGORIES LOGOS. Category Logo is not displayed/showed. I repeat, I am talking about CATEGORY LOGO (the image that represents the category), not products images or the company logo. It is supossed to appear above the list of the products of that category and below the text about the category. Please help me, see screenshots. Link to comment Share on other sites More sharing options...
REIBI Posted March 7, 2014 Share Posted March 7, 2014 In category menu from you back office, you can upload image for each category which would appear there. I normally do that. Link to comment Share on other sites More sharing options...
Maurizio Fabbri Posted March 7, 2014 Author Share Posted March 7, 2014 Thank you for your answer, but did you see the 3 screenshots? is not that category menu? Link to comment Share on other sites More sharing options...
vekia Posted March 7, 2014 Share Posted March 7, 2014 i think it's because of theme. can you share url to your website, please? also, can you show contents of category.tpl please/ Link to comment Share on other sites More sharing options...
Maurizio Fabbri Posted March 7, 2014 Author Share Posted March 7, 2014 (edited) www.celma.com.ve. This is the category.tpl file content: {include file="$tpl_dir./breadcrumb.tpl"} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} <h1>{strip} {$category->name|escape:'htmlall':'UTF-8'} <span> {if $category->id == 1 OR $nb_products == 0}{l s='There are no products.'} {else} {if $nb_products == 1}{l s='There is'}{else}{l s='There are'}{/if} {$nb_products} {if $nb_products == 1}{l s='product.'}{else}{l s='products.'}{/if} {/if} </span>{/strip} </h1> {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')}" 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">{$category->description}</div> {/if} {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories"> <h3>{l s='Subcategories'}</h3> <ul class="inline_list"> {foreach from=$subcategories item=subcategory} <li> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}"> {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img src="{$img_cat_dir}default-medium.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a><br /> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a> </li> {/foreach} </ul> <div class="clearblock"></div> </div> {/if} {if $products} {include file="$tpl_dir./product-compare.tpl"} {include file="$tpl_dir./product-sort.tpl"} {include file="$tpl_dir./product-list.tpl" products=$products} {include file="$tpl_dir./product-compare.tpl"} {include file="$tpl_dir./pagination.tpl"} {elseif !isset($subcategories)} <p class="warning">{l s='There are no products in this category.'}</p> {/if} {elseif $category->id} <p class="warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Edited March 7, 2014 by mauriziofabbri (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted March 7, 2014 Share Posted March 7, 2014 it's because of this: {* {else} <!-- Category image --> {if $category->id_image} <div class="align_center"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" /> </div> {/if} *} this code is commented, this is why image doesnt appear Link to comment Share on other sites More sharing options...
Maurizio Fabbri Posted March 7, 2014 Author Share Posted March 7, 2014 It worked! thank you so much vekia! I didn't realize that. Thank you very much. Have a great weekend. Link to comment Share on other sites More sharing options...
vekia Posted March 7, 2014 Share Posted March 7, 2014 thanks, have a nice weekend too topic marked as solved with regards, Milos Link to comment Share on other sites More sharing options...
Recommended Posts