Viewing 2 replies - 1 through 2 (of 2 total)
  • Here’s the code:

    add_action('em_event_output_show_condition', 'my_em_event_excerpt_output_show_condition', 1, 4);
    function my_em_event_excerpt_output_show_condition($show, $condition, $full_match, $EM_Event){
    if( 'has_excerpt' == $condition && !empty( $EM_Event->post_excerpt ) ) {
    $show = true;
    }
    return $show;
    }
    Thread Starter aledef

    (@aledef)

    @joneiseman
    It works, tahnk you!

    Something was missing in the code i posted previously.
    Here is the working conditional placeholder for event excerpt, for anyone who needs it:

    {has_excerpt}
    #_EVENTEXCERPT
    {/has_excerpt}

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.