For administration: Five equal columns in twitter bootstrap This answer doesn’t work for me because in my case you cannot duplicate 5 times. I suppose the OpenCart "featured" module works with a loop. I don’t understand how to solve my problem that way.
I configure OpenCart-3 (Bootstrap v3.3.5) on the main page the Featured module is displayed in which there are 10 products. By default, they are displayed in 4 pieces in a row. Total 3 rows are obtained: 4, 4, 2 goods. I need something to be displayed in 2 rows of 5 products.
I found the featured.twig file and the line in it. Changing col-lg-3 to col-lg-2 I can achieve the display of goods 6 in a row, but I can not understand how to display exactly 5 in a row.
featured.twig:
{% for product in products %}
<div class="product-layout col-lg-3 col-md-3 col-sm-6 col-xs-12">
I expect the result to be: image2
but the actual output is: image1