I am trying to set up a MB Views item to display related presenters at the end of single event posts. I have the presenter titles showing up, but am having difficulty getting the presenter featured images to show. Can you please tell me what I might be doing wrong? In addition, I would like the featured images to be displayed in the medium large size. How can I do this?
<h2>
Presenters
</h2>
{% set args = {post_type: 'presenters', nopaging: true, relationship: {id: 'events_presenters_relationship', from: post.ID}} %}
{% set presenters = mb.get_posts( args ) %}
<div class="presenters_card">
{% for presenters in presenters %}
<div>
{{ mb.get_the_post_thumbnail( presenters, 'thumbnail' ) }}
<h3>{{ presenters.post_title }}</h3>
</div>
{% endfor %}
</div>
https://postimg.cc/LgBwQsgt
https://postimg.cc/bSTVHF4L