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

Support archive

Playa and Low Events

Kipp Brady 13 Dec 2012 04:57 question, complete

Hi,

Is there any way to use Low Events with Playa. I'm trying to do the following where show_passed="no" is a Low Events parameter within a Playa tag.

{exp:playa:parents channel="seminars_workshops" show_passed="no"}
<a href="{page_url}">{title}</a>
{/exp:playa:parents}

Replies

  1. Kipp Brady 13 Dec 2012 05:52

    I thought the following might work but it doesn't.

    {exp:playa:parents channel="seminars_workshops" dynamic="off" limit="5" parent_id='{exp:low_events:entry_ids channel="seminars_workshops" show_passed="no"}'}
    <a href="{page_url}">{title}</a>
    {/exp:playa:parents}

  2. Low 13 Dec 2012 09:29

    That would be the way to go, but it might not work here because of parse order. Try something like this:

    {exp:low_events:entry_ids} 
    {exp:playa:parents parent_id="{low_events:entry_ids}"}
    ...
    {/exp:playa:parents}
    {/exp:low_events:entry_ids}


    ...with all necessary parameters.

  3. Kipp Brady 13 Dec 2012 22:42

    Excellent, that works.

    Thank you very much.