mauinat Posted December 9, 2014 Share Posted December 9, 2014 Ciao a tutti.Vorrei rimuovere il blocco delle sottocategorie.Facendo una prova con firebug sono riuscito a nasconderlo con la proprietà "display:none;" nel css subcategory.Ma quando poi carico il css con la modifica, non succede nulla... Link to comment Share on other sites More sharing options...
vansrv7 Posted December 9, 2014 Share Posted December 9, 2014 Non fai prima a eliminare le sottocategorie e mettere i prodotti direttamente nella categoria superiore? Link to comment Share on other sites More sharing options...
mauinat Posted December 9, 2014 Author Share Posted December 9, 2014 Non posso perchè il cliente per ora ha solo 4 categorie, ma in un futuro prossimo diventeranno molte di più e quindi poi dovrò riattivarle. Link to comment Share on other sites More sharing options...
vansrv7 Posted December 9, 2014 Share Posted December 9, 2014 A maggior ragione. Potrà creare le categorie quando gli serviranno direttamente dal back-office invece che modificare il codice, oppure le puoi creare ora e tenerle disattivate (sempre dal back-office). Se poi vuoi proprio modificare il codice, io interverrei sul file category.tpl invece che nel css Link to comment Share on other sites More sharing options...
Simone Salerno Posted December 9, 2014 Share Posted December 9, 2014 Nel file tuo-tema/category.tpl cìè la sezione "Subcategories", che parte da {if isset($subcategories)} fino a {/if} prima di {if $products} Commenta tutta quella parte, come sotto {*if isset($subcategories)} .... {/if*} Quando dovrai mostrarle, cancella gli asterischi. 2 Link to comment Share on other sites More sharing options...
mauinat Posted December 10, 2014 Author Share Posted December 10, 2014 Ok grazie Simone.Appena sono davanti al computer provo la tua soluzione! Link to comment Share on other sites More sharing options...
Luckyp Posted December 11, 2014 Share Posted December 11, 2014 Spero di aver capito bene la tua domanda ma nel backoffice di prestashop almeno nella versione1.6.0.9 se vai in : impostazione/temi/configuratore tema, in una delle ultime righe c'è la voce mostra le sottocategorie, selezioni no e salvi ed è fatto. Se non ho capito la domanda scusa. Ciao. Link to comment Share on other sites More sharing options...
mauinat Posted December 15, 2014 Author Share Posted December 15, 2014 Ciao LuckypPurtroppo no. Quello che il cliente vuole eliminare è la foto associata alla categoria.Se vedi nel primo post ho messo uno screenshoot.In pratica quando creo una categoria, viene associata una immagine di 125x125 pixel che il cliente non vuole visualizzare perchè significa che ogni volta ne deve realizzare una autonomamente per ogni singola categoria.Vuole semplicemente il nome della categoria e basta.L'opzione dalla configurazione del tema non mi fa nessuna modifica... Link to comment Share on other sites More sharing options...
teototaro Posted December 16, 2014 Share Posted December 16, 2014 Nel file category.tpl del tuo tema fai questa modifica: PRIMA {foreach from=$subcategories item=subcategory} <li> <div class="subcategory-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" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> </div> <h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'|truncate:350}</a></h5> {if $subcategory.description} <div class="cat_desc">{$subcategory.description}</div> {/if} </li> {/foreach} DOPO {foreach from=$subcategories item=subcategory} <li> {* <div class="subcategory-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" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> </div> *} <h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'|truncate:350}</a></h5> {if $subcategory.description} <div class="cat_desc">{$subcategory.description}</div> {/if} </li> {/foreach} Come puoi vedere è stato commentato tutto ciò che va dalla riga 81 alla riga 89. 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