Hi,
I'm in the very beginning in metaboxing.
I have a image upload field.
Corrently the output of this file in MB Views is something like this:
{% for item in post.bilder %}
<a href="{{ item.large.url }}" class="simplelightbox">
<img src="{{ item.thumbnail.url }}" width="{{ item.thumbnail.width }}" height="{{ item.thumbnail.height }}" alt="{{ item.thumbnail.alt }}">
</a>
{% endfor %}
This is working well.
I#m wondering if there is a way to output (for examplel) 4 images at the same time and add an pagination for the other images.
Any ideas how to achieve this?
Kind regards,
Ole