Home › Forums › Calendar Products › Events Calendar PRO › Listing venues and organizers
- This topic has 6 replies, 3 voices, and was last updated 10 years ago by
Jens Kirk.
-
AuthorPosts
-
September 15, 2016 at 12:56 am #1164489
Jens Kirk
ParticipantHello!
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,
September 15, 2016 at 6:11 am #1164547Nico
MemberHi 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,
NicoSeptember 15, 2016 at 12:26 pm #1164813Jens Kirk
ParticipantHi 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?
September 19, 2016 at 8:34 am #1165894Nico
MemberThanks 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,
NicoSeptember 19, 2016 at 10:48 am #1165977Jens Kirk
ParticipantThanks, this was spot on what I needed.
thanks!
September 19, 2016 at 12:44 pm #1166048Nico
MemberPerfect! 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 -
AuthorPosts
- The topic ‘Listing venues and organizers’ is closed to new replies.
