• Hi there. I’m wondering if there is a way to use the excerpt for the event in the Full Calendar tooltips (front end full calendar), instead of the content. Some of my events have long descriptions and the boxes that pop up when you hover over the events are jammed with information. Any info you could provide would be appreciated! thanks

    http://wordpress.org/extend/plugins/event-organiser/

Viewing 1 replies (of 1 total)
  • Hi Korpuskrispy,

    The content is limited to 55 words by default. You can use the excerpt_length to reduce this:

    add_filter('excerpt_length','my_excerpt_length');
        function my_excerpt_length(){
             return 30;
        }

    However this may be used by your theme for generating excerpts from your other content (posts etc). So you may want to check that reducing it doesn’t have undesirable consequences.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Event Organiser] Full Calendar tooltips’ is closed to new replies.