All Low add-ons are now owned by EEHarbor. Read the blog post.

Support archive

Multiple Related Entries and Low Events

Kevin Beick 27 Sep 2017 00:31 question, complete

I'm trying to loop over Multiple Related Entries within a Low Events entry tag and it's not working. However, when I use the Single Related Entry tag it does give me the first related entry. I have no idea why the Multiple Related Entries tag doesn't output anything. See my code below - I get the event title but no speakers.

(Low, you've helped me with a different issue on this same site a couple weeks ago. The same super admin and FTP creds should work, or I can resend them if needed. see template site/test2)
Thanks!

{exp:low_events:entries
channel="events"
search:event_type="EEA Meeting"
limit="1"
date="-1 week;now"
}

title: {title}
barrel speakers:

{event_barrel_speaker:title} <!-- THIS WORKS -->

{event_barrel_speaker}
{event_barrel_speaker:title} <!-- THIS DOESN'T WORK -->
{/event_barrel_speaker}

{/exp:low_events:entries}

Replies

  1. Low 27 Sep 2017 10:44

    The low_events:entries tag will call the native channel:entries tag to parse the actual entry/event content, so this might be unrelated to LE.

    Can you try and replace the low_events:entries tag with the channel:entries tag and see if the problem persists?

  2. Kevin Beick 27 Sep 2017 18:22

    The problem does persist with the channel:entries tag. I take it that means it's not related to LE... I'll contact EllisLab.

  3. Kevin Beick 27 Sep 2017 19:16

    EllisLab helped me debug it. I needed to put a status parameter on there.

    {event_barrel_speaker status="not closed"}
    * {event_barrel_speaker:title} | {event_barrel_speaker:status}
    {/event_barrel_speaker}