PayoViejo Posted June 11, 2012 Share Posted June 11, 2012 Hello la communauté, Je viens vers vous car néophyte sur Prestashop, j'ai vraiment du mal à trouver mon bonheur. J'aimerais faire un truc tout simple qui devient vachement technique dès qu'on tape dans le smarty .. :s c'est dommage d'ailleurs mais bon ... J'aimerais afficher J'ai mon site sans colonne gauche ou droite, c'est donc un centre de 980 px. Sur la page de base (index) j'aimerais afficher mes 12 fabricants en 3 lignes de 4. Pourriez vous (non pas me donner le code ^^ hein !!) mais m'orienter ? J'ai déjà le code sur lequel je vais pouvoir travailler mais je ne sais pas ou le mettre ^^ {if $manufacturers} {if $text_list} <ul class="bullet"> {foreach from=$manufacturers item=manufacturer name=manufacturer_list} {if $smarty.foreach.manufacturer_list.iteration <= $text_list_nb} <li class="{if $smarty.foreach.manufacturer_list.last}last_item{elseif $smarty.foreach.manufacturer_list.first}first_item{else}item{/if}"><a href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)}" title="{l s='More about' mod='blockmanufacturer'} {$manufacturer.name}">{$manufacturer.name|escape:'htmlall':'UTF-8'}</a></li> {/if} {/foreach} </ul> {/if} {if $form_list} <form action="{$smarty.server.SCRIPT_NAME}" method="get"> <p> <select id="manufacturer_list" onchange="autoUrl('manufacturer_list', '');"> <option value="0">{l s='All manufacturers' mod='blockmanufacturer'}</option> {foreach from=$manufacturers item=manufacturer} <option value="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)}">{$manufacturer.name|escape:'htmlall':'UTF-8'}</option> {/foreach} </select> </p> </form> {/if} {else} <p>{l s='No manufacturer' mod='blockmanufacturer'}</p> {/if} Merci beaucoup pour votre aide par avance et bonne journée. 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