Mura82 Posted October 9, 2012 Share Posted October 9, 2012 (edited) 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 October 11, 2012 by Mura82 (see edit history) Link to comment Share on other sites More sharing options...
Mura82 Posted October 10, 2012 Author Share Posted October 10, 2012 (edited) 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 October 10, 2012 by Mura82 (see edit history) Link to comment Share on other sites More sharing options...
Mura82 Posted October 11, 2012 Author Share Posted October 11, 2012 (edited) 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 October 11, 2012 by Mura82 (see edit history) 1 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