In my view code below I am able to see all the normal fields but the SPONSOR_LOGO which is a custom field will not show. No custom fields will. Any idea?
{% set sponsor_list = post.episode_sponsor %}
{% if sponsor_list is empty or sponsor_list == [] %}
{% else %}
<div class="episode_extra_label">SPONSOR</div>
{% for sponsor in sponsor_list %}
{{sponsor.ID}}
<div class="sponsor_name">
<a href="{{ sponsor.url }}" target="_blank" rel="noopener">{{ sponsor.post_title }}</a>
</div>
<div class="sponsor_logo">
<a href="{{ sponsor.url }}" target="_blank" rel="noopener">
<img src="{{ post.sponsor_logo }}" alt="{{ sponsor.post_title }}">
</a>
</div>
{% endfor %}
</div>
{% endif %}