Still trying to create a listing of organizers…

Home Forums Calendar Products Events Calendar PRO Still trying to create a listing of organizers…

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #950753
    Andrea Olson
    Participant

    Hi again! I posted before about creating a map with directory. I’ve decided to use another plugin to do the map and link that map to the organizers’ individual pages, which is working so far. My still outstanding question is regarding making a listing of organizers on one page. I am *not* good at php and don’t understand the instructions with the post that had the code in it (https://theeventscalendar.com/support/forums/topic/venue-organizer-views/).

    Could you please walk me through how to set this up (as if I am a Kindergartner), and then how to use the new page.php file (I think) in an actual WordPress Page? I am using Enfold theme and the most current WordPress, plus Events Calendar PRO and Community Events.

    This is my last step – a simple list of all coaches – so any help is appreciated!

    Thanks,
    Andrea

    #950811
    Geoff
    Member

    Hello there, Andrea!

    I’m happy to try to walk you through this as best I can. 🙂

    The snippet in the thread you linked to will work wonderfully:

    <?php $organizers = get_posts(array('post_type' => 'tribe_organizer', 'posts_per_page' => -1));
    
    echo '<ul>';
    
    foreach ($organizers as $organizer) {
    echo '<li>';
    esc_html_e($organizer->post_title);
    echo '</li>';
    }
    
    echo '</ul>';
    
    ?>

    That will display a list of all the Event Organizers (Coaches) currently registered in WordPress. Add that to the page template you are working with (not using the page editor, but working in the template code itself), then it should be good to go.

    Please feel free to let me know if you have follow-up questions. 🙂

    Cheers!
    Geoff

    #954332
    Geoff
    Member

    Hey there, Andrea! This thread has been quiet for a couple of weeks, so I’m going to go ahead and close it. Please feel free to hit us up with a new thread if you still have questions here and we’d be happy to help. 🙂

    Cheers!
    Geoff

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Still trying to create a listing of organizers…’ is closed to new replies.