Hi,
I want to make a view to display somme product on a homepage of a site.
I achieve this
{% set args = { post_type: 'product', posts_per_page: -1 } %}
{% set posts = mb.get_posts( args ) %}
{% for post in posts %}
<h3>{{ post.post_title }}</h3>
<p>{{ post.post_content }}</p>
{% endfor %}
How can i insert the other field like price and small description
Thanks