Jump to content

Dimensioni immagini


gold84it

Recommended Posts

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

Visto che il forum italiano è così attivo, mi rispondo da solo, magari a qualcun altro può tornare utile.

  1. In base a dove dev'essere utilizzato il nuovo formato, aprite controllers/ProductController.php oppure controllers/CategoryController.php
  2. cercate
    'categorySize' => Image::getSize(ImageType::getFormatedName('category')),
    


  3. aggiungete
    'nomenuovoformatoSize' => Image::getSize(ImageType::getFormatedName('nomenuovoformato')),
    


  4. 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...