Jump to content

[RISOLTO - RÉSOLU] Mostrare logo produttore in pagina prodotto


MirkOSX

Recommended Posts

Salve, avevo l'esigenza di mostrare il logo produttore nella pagina del prodotto.

Ho modificato il product.tpl del tema base che sto utilizzando con questo codice:

<p><span><img src=" {$img_manu_dir}{$product->id_manufacturer}.jpg " width="50%" alt="{$manufacturer.name}" title="{$manufacturer.name}"></span> </p>

Funziona regolarmente per l'immagine del produttore, non mostra invece il nome.

Sono ben accetti suggerimenti.

Grazie.

Edited by MirkOSX (see edit history)
Link to comment
Share on other sites

Ciao

 

provare questo codice:

  {if $product->id_manufacturer}
      <p>
      <h4>{$product->manufacturer_name}</h4>
      <span>
          <img src=" {$img_manu_dir}{$product->id_manufacturer}.jpg " width="50%" alt="{$product->manufacturer_name}" title="{$product->manufacturer_name}">
      </span>
      </p>
  {/if}
  • Like 2
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...