gold84it Posted August 18, 2013 Share Posted August 18, 2013 Buongiorno a tutti, dal BO ho creato un nuovo formato per le immagini che ho chiamato "sub_default". Ora vorrei applicare questo nuovo formato alle immagini delle sotto-categorie. Nel template categorie (category.tpl) devo quindi sostituire le vecchie impostazioni (medium_default), con quelle nuove appena create. {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" /> {else} <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} Qualcuno potrebbe suggerirmi il procedimento corretto? Grazie Link to comment Share on other sites More sharing options...
gold84it Posted August 19, 2013 Author Share Posted August 19, 2013 Visto che il forum italiano è così attivo, mi rispondo da solo, magari a qualcun altro può tornare utile. In base a dove dev'essere utilizzato il nuovo formato, aprite controllers/ProductController.php oppure controllers/CategoryController.php cercate 'categorySize' => Image::getSize(ImageType::getFormatedName('category')), aggiungete 'nomenuovoformatoSize' => Image::getSize(ImageType::getFormatedName('nomenuovoformato')), in category.tpl sostituite {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'nomenuovoformato')}" alt="" /> {else} <img src="{$img_cat_dir}default-nomenuovoformato_default.jpg" alt="" width="{$nomenuovoformatoSize.width}" height="{$nomenuovoformatoSize.height}" /> {/if} Enjoy... 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