Listing venues and organizers

Home Forums Calendar Products Events Calendar PRO Listing venues and organizers

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1164489
    Jens Kirk
    Participant

    Hello!

    I use the plugin to display a listing of organizers & venues. Do you have a snippet that pulls the pic and info excerpt also ?

    I would love to show my organizers with photo and a short description.

    Cheers,

    #1164547
    Nico
    Member

    Hi there Jens,

    Thanks for getting in touch! I can help you here, but first can you please let me know how are you displaying the lists of organizers and venues? If you can add a link to where I can see each listing that would be great ๐Ÿ™‚

    Please let me know about it,
    Best,
    Nico

    #1164813
    Jens Kirk
    Participant

    Hi Nico!

    This is the page: http://new.nlphuset.dk/nlp-husets-undervisere/.

    As you see I output the organizers via the “The Events Calendar: List Venues/Organizers Shortcodes” plugin. The organizers are displayed as the default ul list.

    I would love an php snippet that also pulls out the organiser pic and description.

    Would that be possible?

    #1165894
    Nico
    Member

    Thanks for following up Jens!

    Just add the following snippet to your theme’s (or child theme’s) functions.php file:

    /* Tribe, add content + image to venue/organizer shortcode (https://theeventscalendar.com/knowledgebase/listing-venues-and-organizers/) */
    function tribe_venue_organizer_list_add_info ( $item, $atts ) {

    $item = substr ( $item, 0, -5 );

    // add content
    $item .= '

    ' . get_the_content() . '

    ';

    // add featured image

    if ( $img = get_the_post_thumbnail ( ) ) {
    $item .= '

    ' . $img . '

    ';
    }

    $item .= '';

    return $item;
    }

    add_filter( 'TEC_VenueOrganizer_List.list.item', 'tribe_venue_organizer_list_add_info', 10, 2 );

    You can change the markup and order of the content and image, it’s just a sample!

    Please let me know if it works for you,
    Best,
    Nico

    #1165977
    Jens Kirk
    Participant

    Thanks, this was spot on what I needed.

    thanks!

    #1166048
    Nico
    Member

    Perfect! Thanks for confirming Jens ๐Ÿ™‚

    Iโ€™ll go ahead and close out this thread, but if you need help with anything else please donโ€™t hesitate to create a new one and we will be happy to assist you.

    Have a great week,
    Nico

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Listing venues and organizers’ is closed to new replies.