Displaying Custom Field

Support MB Views Displaying Custom Field

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #45567
    Mark DowdMark Dowd
    Participant

    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 %}
    #45568
    Mark DowdMark Dowd
    Participant

    Sorry This is my current code

    {% 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="{{ sponsor.sponsor_logo }}" alt="{{ sponsor.post_title }}">
        </a>
     </div>
    
    {% endfor %}
    </div>
    {% endif %}
    #45577
    PeterPeter
    Moderator

    Hello Mark,

    What is the field type of the sponsor_logo field? Please share some screenshots of the field group in the admin area.

    #45588
    Mark DowdMark Dowd
    Participant

    It is just a file_input custom field. You can see it on the right side of this page. It cycles through the SPONSORS and shows the name and links but not the image. The image is there.

    https://hrn.wpcsandbox.com/episode/nilou-motamed/

    Thanks!

    #45593
    PeterPeter
    Moderator

    Please share your site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.