Organizer excerpt on single event page

Home Forums Calendar Products Events Calendar PRO Organizer excerpt on single event page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1015747
    Jesper J Nohr
    Participant

    I have succesfully added an organizer featured image on the single events page but also need the organizer excerpt and/or description.

    I tried with the following but it returns the current event´s excerpt instead:

    echo tribe_events_get_the_excerpt( $organizer );

    How is this possible?

    #1015986
    Nico
    Member

    Hi there Jesper,

    Thanks for reaching out to us, I’ll help you out with this one!

    As there’s no function to get the content/experpt directly by post ID, you’ll need to get the organizer object first and then output the content. Assuming $organizer holds the organizer ID, the code would look like this:

    $my_organizer = get_post( $organizer );
    echo apply_filters('the_content',$my_organizer->post_content);

    Please give it a try and let me know,
    Best,
    Nico

    #1021202
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Organizer excerpt on single event page’ is closed to new replies.