cyntoch Posted May 3, 2013 Share Posted May 3, 2013 (edited) Bonjour, J'aimerais supprimer la partie entourée sur ma capture d'écran, je trouve que cela ne sert à rien étant donné que j'ai déjà tous les produits de ma catégorie juste en dessous. Je ne sais pas à quoi cela correspond. Est-ce un module a désactiver? ou est-ce que cela se fait dans les fichiers? Si oui, lequel? Merci d'avance pour votre aide. Edited May 4, 2013 by cyntoch (see edit history) Link to comment Share on other sites More sharing options...
YopixelAE Posted May 3, 2013 Share Posted May 3, 2013 category.tpl Link to comment Share on other sites More sharing options...
splash_info Posted May 3, 2013 Share Posted May 3, 2013 En effet il vous faut modifier le fichier category.tpl dans le dossier de votre thème car il semblerait que celui-ci mette trois produits en avant avant la liste de tous les produits. N'hésitez pas à poster le code du fichier pour que l'on puisse vous aider. Link to comment Share on other sites More sharing options...
cyntoch Posted May 3, 2013 Author Share Posted May 3, 2013 Et bien franchement c'est très gentil de me proposer cela car effectivement je ne trouve pas... Un grand merci Voici mon fichier category.tpl {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'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} <span class="category-product-count"> {include file="$tpl_dir./category-count.tpl"} </span> </h1> {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" id="img_bc"> <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"/> </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($HOOK_CATEGORY_FEATURE) && $HOOK_CATEGORY_FEATURE}{$HOOK_CATEGORY_FEATURE}{/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"} </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"} </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...
binassmax Posted May 3, 2013 Share Posted May 3, 2013 (edited) sinon t'embête pas tu rajoute un display:none ce qui donne: .shopbybrand { overflow: hidden; padding-bottom: 30px; border-bottom: 1px dashed #c6c6c6; margin-bottom: 10px; display: none; } ça sera valable sur toute tes catégories ou en effet il y a une certaine redondance. vide ton cache pour voir le changement Edited May 3, 2013 by binassmax (see edit history) Link to comment Share on other sites More sharing options...
cyntoch Posted May 3, 2013 Author Share Posted May 3, 2013 Je suis vraiment désolée mais je n'arrive pas à trouver le passage qui commence par .shopbybrand { J'ai même utilisé l'option recherche de Notepad++ et il ne trouve pas... Link to comment Share on other sites More sharing options...
binassmax Posted May 4, 2013 Share Posted May 4, 2013 le css se trouve à http://www.littlefabrics.fr/themes/brabie/css/product_list.css et c'est la ligne 1 rajoute donc display:none ce qui donne: .shopbybrand{overflow:hidden;padding-bottom:30px;border-bottom:1px dashed #c6c6c6;margin-bottom:10px;display:none;} Link to comment Share on other sites More sharing options...
cyntoch Posted May 4, 2013 Author Share Posted May 4, 2013 Ah très bien donc ce n'était pas dans le fichier category.tpl mais dans product_list.css C'est bon ça marche Merci beaucoup pour ton aide Cynthia. Link to comment Share on other sites More sharing options...
binassmax Posted May 4, 2013 Share Posted May 4, 2013 de rien je me suis dis que c'était moins fastidieux à faire 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