Skip to Content
Menu
This question has been flagged
2 Replies
4835 Rodiniai

I was trying to figure out how to stop a t-foreach loop after a certain amount of runs


f.e.: I want to print my 5 latest products with all varibales

" t-as="product">



Right now, it runs through all of my products, but i want to stop the list after 5 products.

Is there a possibility

Portretas
Atmesti
Best Answer

you can use t-set / t-value to save any value.
then in for loop you can increment this value and use t-if against this.
but this will iterate through all products but display only 5.



Portretas
Atmesti
Best Answer

Use line_index which comes with t-foreach. The index is 0 based, so subtract 1

t-if="line_index < 4"

Portretas
Atmesti
Related Posts Replies Rodiniai Veikla
1
liep. 24
9577
1
kov. 15
17984
1
gruod. 23
2936
1
liep. 25
2405
1
geg. 25
2824