apology91 Posted December 30, 2011 Share Posted December 30, 2011 Salve, stiamo cercando di aprire un sito di ecommerce e tra le tante piattaforme abbiamo scelto prestashop perchè speravamo che fosse abbastanza user-friendly. Inizialmente tutto sembrava andare liscio ma poi dopo i primi test molte cose ci hanno creato problemi e perdita di tempo. L'ultimo problema ancora da risolvere è mettere in ordine le caratteristiche di un prodotto! (PS 1.4.5.1) Sono cavolate che potevano essere risolte inizialmente perchè mettere le mani in php e codici vari non è semplice. Come mai tanti problemi da risolvere? Se qualcuno la pensa come noi, non esiti a repplicare. Gianluca & Co. Link to comment Share on other sites More sharing options...
durghe Posted January 2, 2012 Share Posted January 2, 2012 Dai un occhiata QUI Link to comment Share on other sites More sharing options...
apology91 Posted January 2, 2012 Author Share Posted January 2, 2012 Grazie durghe ma quel post è del 2008 e comunque non funziona. Ho risolto creando tanti cicli per ogni caratteristica: {foreach from=$features item=feature} {if ($feature.name == 'Titolo:' || $feature.name =='Title:')} <!-- Condizione per ogni lingua. Nel mio caso italiano,inglese --> <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Autore:' || $feature.name =='Author:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Anno:' || $feature.name =='Year:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Pagine:' || $feature.name =='Pages:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'ISBN:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Editore:' || $feature.name =='Publisher:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Rilegatura:' || $feature.name =='Binding:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Lingua:' || $feature.name =='Language:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} {foreach from=$features item=feature} {if ($feature.name == 'Formato:' || $feature.name =='Format:')} <li><span> {$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} 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