Jump to content

[Risolto] Visualizzare la caratteristica nella pagina prodotto.


Mura82

Recommended Posts

Ciao,

Vorrei poter inserire la caratteristica dei miei prodotti all'interno della scheda principale e non sotto in "description and features"

 

Sono riuscito a farlo con il campo produttore inserendo il codice qua sotto nel product.tpl:

<label for="manufacturer_name">{l s='Produttore:'} </label><font color=blue><b>
<span class="editable">{$product->manufacturer_name|escape:'htmlall':'UTF-8'}</span></font></b>

 

Purtroppo però non riesco a farlo con il campo caratteristica, che nel mio caso è solo uno e può assumere una decina di valori.

Ho provato con $feature, feature_name, feature_value, feature[1]_value, ma non mi visualizza mai niente.

 

Grazie anticipatamente

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

Up!

Nessuno ha mai avuto necessità di raggruppare le caratteristiche assieme agli altri dati?

Ho trovato come fare per i produttore e per la descrizione breve utilizzando questo codice:

 

 

$product->manufacturer_name <-- Produttori
$product->description_short <-- Descrizione breve

 

Purtroppo per le caratteristiche, tutti i tentativi di utilizzare feature, feature_name, feature_value sono risultati vani.

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

Risolto grazie al forum in inglese.

Se a qualcuno servisse, questo è il codice che ho usato per far comparire il campo caratteristica sotto i campi "Riferimento" e "Quantità" nella scheda prodotto:

 

{if $features}
{foreach from=$features item=feature}
<label for="feature_value"><span class="editable">{$feature.name|escape:'htmlall':'UTF-8'}</label></span><b>:
<font color=blue>{$feature.value|escape:'htmlall':'UTF-8'}</b></font>
{/foreach}
{/if}

Edited by Mura82 (see edit history)
  • Like 1
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...