franzneves Posted May 21, 2014 Share Posted May 21, 2014 (edited) Na página de um produto alguém saberia me informar como inverto as tabelas ou abas FICHA TÉCNICA E DESCIRÇÃO. (Prestashop 1.6.0.6). Gostaria que DESCRIÇÃO ficasse antes de FICHA TÉCNICA. Grato novamente a todos Edited June 4, 2014 by franzneves (see edit history) Link to comment Share on other sites More sharing options...
franzneves Posted May 22, 2014 Author Share Posted May 22, 2014 Consegui resolver da seguinte maneira: MOVA ESTE CÓDIGO DENTRO DO ARQUIVO (theme/seu-tema/product.tpl) {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} PATA BAIXO DESTE CÓDIGO {if $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3>{/if} {if isset($product) && $product->description} <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} NO CASO DO MEU TEMA ESPECÍFICO TIVE TAMBÉM QUE INVERTER ESTAS ESTAS LINHAS E TROCAR TAB-1 POR TAB-2 {if $product->description} <div class="tab-title" data-tab="product-tab-1"><span>{l s='Description'}</span></div> {/if} {if isset($features) && $features} <div class="tab-title" data-tab="product-tab-2"><span>{l s='Data sheet'}</span></div> {/if} Link to comment Share on other sites More sharing options...
selectshop.at Posted May 22, 2014 Share Posted May 22, 2014 Sim, isto mesmo. Era a resposta que iria dar... Apenas trocar o número do Tab. 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