Is there a way to remove the p tags when outputting the event_description in the template?
Is there a way to remove the p tags when outputting the event_description in the template?
Resolved. Requires a change to /plugins/wp-calendar/fsCalendarEvent.php file, line 215.
Change this:
return apply_filters('the_content', $this->description);
To this:
return apply_filters('the_content_rss', $this->description);
This topic has been closed to new replies.