Show Category and venue info in calendar

WordPress Event Management, Calendars & Registration Forums General Question Show Category and venue info in calendar

This topic contains 1 reply, has 2 voices, and was last updated by  Stephen Harris 10 years, 7 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #7261

    is it possible to show for each entry in the calendar view also associated category and venue info in calendar. (not in tooltip but directly in the calendar view)
    thanks

    Michael Koch
    #7265

    Kind of… You can filter the event title has it appears on the calendar – but you won’t be able to do much more than that:

    add_filter( 'eventorganiser_fullcalendar_event', 'myprefix_fullcalendar_change_event_title' );
    function myprefix_fullcalendar_change_event_title( $event ){
        $event['title'] = "...";
        return $event;
    }
    

    Please note the fullCalendar is cached, so changes will not take effect until it has been cleared. You can do this by updating an event. HTML in the event title is escaped.

    Stephen Harris
Viewing 2 posts - 1 through 2 (of 2 total)
To enable me to focus on Pro customers, only users who have a valid license for the Pro add-on may post new topics or replies in this forum. If you have a valid license, please log-in or register an account using the e-mail address you purchased the license with. If you don't you can purchase one here. Or there's always the WordPress repository forum.