featured image on event list widget

Home Forums Calendar Products Events Calendar PRO featured image on event list widget

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1161975
    Mr. Peri
    Participant

    Hi,

    Is there a way I can get the featured image to show on the event list when using this shortcode: [tribe_events_list limit=”4″ venue=”yes”]?

    #1162307
    Nico
    Member

    Hi there Mr. Peri,

    Glad to help you out on this issue as well 🙂

    Try using the following snippet by pasting it into theme’s (or child theme’s) functions.php file:

    function custom_widget_featured_image() {
    global $post;

    echo tribe_event_featured_image( $post->ID, 'thumbnail' );
    }
    add_action( 'tribe_events_list_widget_before_the_event_title', 'custom_widget_featured_image' );

    That should do the trick!

    Cheers,
    Nico

    #1171502
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘featured image on event list widget’ is closed to new replies.