Paolo Rotondo Posted October 16, 2015 Share Posted October 16, 2015 Ciao ragazzi ho un problema, vorrei eliminare le immagini della categorie e delle sottocategorie del mio menù. Però provo a modificare il file category seguendo le istruzioni di altri topic presenti nel forum ma non cambia niente. Quali sono le righe che devo eliminare? Io ho scaricato il file .tpl, l'ho editato in blocco note e poi l'ho ricaricato sempre in blocco note. E' corretto?? Il file originale è questo. Grazie a tutti in anticipo per l'aiuto {* * 2007-2015 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2015 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat"> {if $scenes} <div class="content_scene"> <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {if $category->description} <div class="cat-desc rte"> {if Tools::strlen($category->description) > 350} <div id="category_description_short">{$description_short}</div> <div id="category_description_full" class="unvisible">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div>{$category->description}</div> {/if} </div> {/if} </div> {else} <!-- Category image --> <div class="content_scene_cat_bg scene_cat"> {if $category->id_image} <div class="image"> <img class="img-responsive" src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html':'UTF-8'}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" /> </div> {/if} {if $category->description} <div class="cat-desc"> {if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div class="rte">{$category->description}</div> {/if} </div> {/if} </div> {/if} </div> {/if} <h1 class="page-heading{if (isset($subcategories) && !$products) || (isset($subcategories) && $products) || !isset($subcategories) && $products} product-listing{/if}"> <span class="cat-name"> {$category->name|escape:'html':'UTF-8'}{if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'}{/if} </span> </h1> {include file="$tpl_dir./category-count.tpl"} {if isset($subcategories)} {if (isset($display_subcategories) && $display_subcategories eq 1) || !isset($display_subcategories) } <!-- Subcategories --> <h4 class="page-subheading">{l s='Subcategories'}</h4> <div id="subcategories"> <div class="row clearfix"> {foreach from=$subcategories item=subcategory} <div class="col-md-3 col-xs-6 col-sp-12"> <div class="subcategories scene_cat"> <div class="image"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x img-responsive" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'category_default')|escape:'html':'UTF-8'}" alt=""/> {else} <img class="replace-2x img-responsive" src="{$img_cat_dir}{$lang_iso}-default-category_default.jpg" alt=""/> {/if} </a> </div> <h5 class="cat-name" ><a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'}</a></h5> {if $subcategory.description} <div class="cat-desc">{$subcategory.description}</div> {/if} </div> </div> {/foreach} </div> </div> {/if} {/if} {if $products} {include file="$tpl_dir./sub/product/product-list-form.tpl"} {/if} {elseif $category->id} <p class="alert alert-warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Link to comment Share on other sites More sharing options...
Giorgio M. Posted October 16, 2015 Share Posted October 16, 2015 Commenta il blocco <--CATEGORY IMAGE--> a dire il vero potresti farlo anche con css <!-- Category image --> <div class="content_scene_cat_bg scene_cat"> {if $category->id_image} <div class="image"> Link to comment Share on other sites More sharing options...
Paolo Rotondo Posted October 16, 2015 Author Share Posted October 16, 2015 Commenta il blocco <--CATEGORY IMAGE--> a dire il vero potresti farlo anche con css <!-- Category image --> <div class="content_scene_cat_bg scene_cat"> {if $category->id_image} <div class="image"> Ciao Giorgio, grazie della risposta ma non ho proprio capito come procedere Scusami ma ho pochissima esperienza in fatto di codice HTML! Le stringhe che mi hai scritto sono quelle che dovrei togliere? Così elimino sia le immagini "di copertina" della categorie e delle sottocategorie? Grazie ancora per il tuo aiuto! Link to comment Share on other sites More sharing options...
Giorgio M. Posted October 16, 2015 Share Posted October 16, 2015 Non si elimina, si "commenta" Prima della stringa inserisci <!-- ed alla fine --> Prova, cancelli la cache, aggiorni la pagina e vedi cosa succede Link to comment Share on other sites More sharing options...
Giorgio M. Posted October 16, 2015 Share Posted October 16, 2015 Mi raccomando SEMPRE back up del file prima di procedere con le modifiche!Se noti la scritta Category Image è commentata, infatti non appare sul tuo front office Link to comment Share on other sites More sharing options...
Paolo Rotondo Posted October 16, 2015 Author Share Posted October 16, 2015 Ancora non va! Ho provato a commentare le 3 righe che hai scritto sopra ma niente! Però è strano perchè sembra non cambi mai niente e non vorrei fosse la cache. Io la pulisco dal pannello di controllo interno alla voce prestazioni e poi pulisci cache, è corretto? Hai altre idee per togliere le immagini delle categorie e sottocategorie? Grazie mille!! Link to comment Share on other sites More sharing options...
Giorgio M. Posted October 16, 2015 Share Posted October 16, 2015 Beh... a parte che se non metti le immagini le immagini non appaiono nelle categorie. <!-- Category image --> <!--<div class="content_scene_cat_bg"{if $category->id_image} style="background:url({$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html':'UTF-8'}) right center no-repeat; background-size:cover; min-height:{$categorySize.height}px;"{/if}> {if $category->description} <div class="cat_desc"> <span class="category-name"> {strip} {$category->name|escape:'html':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'} {/if} {/strip} </span> {if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div class="rte">{$category->description}</div> {/if} </div> {/if} </div> {/if} </div> --> Pulisci piu' volte la cache Link to comment Share on other sites More sharing options...
@diegofrancesco Posted October 16, 2015 Share Posted October 16, 2015 Hai controllato che non ci sia l'opzione nel pannello di configurazione del tema per aggiungerle e toglierle? Link to comment Share on other sites More sharing options...
Giorgio M. Posted October 16, 2015 Share Posted October 16, 2015 devi correggere con il css in questo caso Link to comment Share on other sites More sharing options...
Paolo Rotondo Posted October 16, 2015 Author Share Posted October 16, 2015 Allora non funziona ancora, però togliendo le immagini di copertina delle categorie spariscono dalla categoria stessa! L'unico problema è che quando clicco su una categoria "superiore" (per esempio nella categoria Donna, che poi ha sotto un sacco di sottocategorie) mi rimangono i bannerini delle sottocategorie con scritto "immagini non disponibili". Però potrei rendere le categorie superiori non cliccabili così elimino il problema! 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