• Hi.I’ve noticed that the online demo seems to truncate the Event’s content for use in the tooltips: http://demo.wp-events-plugin.com/calendar/

    Is there a settings option for this as my popups show all content and extend beyond the bottom of the screen.

    Alternatively, could the following change be made in the next realease, so that the excerpt will be used if one exists for the event?

    wp-fullcalendar.php line 222…

    #$content = ( !empty($post) ) ? $post->post_content : ''; // OLD
    // NEW
    if ( !empty($post) ) {
        if ($post->post_excerpt) {
            $content = $post->post_excerpt;
        } else {
            $content = $post->post_content;
            // Possibly also truncate here
        }
    } else {
        $content = '';
    }
    // END

    https://wordpress.org/plugins/wp-fullcalendar/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Tooltip to use excerpt if available’ is closed to new replies.