abcd1234 Posted April 26, 2012 Share Posted April 26, 2012 Bonjour, J'aimerais pouvoir limiter le nombre de vignettes d'un produit. J'ai regardé dans product.tpl, je pense qu'il y a moyen de limiter le nombre dans la boucle. <ul> {foreach from=$images item=image name=thumbnails} {assign var=imageIds value=`$product->id`-`$image.id_image`} <li id="thumbnail_{$image.id_image}"> Link to comment Share on other sites More sharing options...
Dev On Web Posted April 26, 2012 Share Posted April 26, 2012 Bonjour, je pense que c'est possible en utilisant la propriété index de Smarty, a peu près comme cela (l'exemple limiterai à 3) : <ul> {foreach from=$images item=image name=thumbnails} {if $smarty.foreach.image.index < 3} ici le code... {/if} Après je n'ai pas testé... On peut aussi imaginer une structure break : <ul> {foreach from=$images item=image name=thumbnails} {if $smarty.foreach.image.index == 3} {break} {/if} ici le code... 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