Skody Posted November 24, 2015 Share Posted November 24, 2015 (edited) Salve, vorrei passare da questa situazione: http://prntscr.com/96bk7d a questa: http://prntscr.com/96dge8 In sostanza invertire la posizione di "Scheda Tecnica" con "Dettagli" . Come posso fare? Vi ringrazio. Utilizzo il tema di default. Edited November 24, 2015 by Skody (see edit history) Link to comment Share on other sites More sharing options...
Sito Lab Posted November 24, 2015 Share Posted November 24, 2015 vai in themes/tuo tema ed apri il file product.tpl (fare sempre un backup) intorno alla riga 480 hai questo {if isset($product) && $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} copia e cancella poi vai alla riga 463 hai questo {if isset($features) && $features} <!-- Data sheet --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='Data sheet'}</h3> <table class="table-data-sheet"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </section> <!--end Data sheet --> {/if} devi prendere il codice copiato ed incollarlo prima di questo {if isset($features) && $features} 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