Hi Marcial,
Thanks for reaching out! Let me try to help you with this one. I might have a solution which you will not lose with an update. 🙂
Paste this code in your functions.php file (Appearance > Editor > choose functions.php on the right side):
function pos_ical_remove_description( $parts ) {
foreach ( $parts as &$single_part ) {
// We're only interested in modifying the description field
if ( 0 !== strpos( $single_part, 'DESCRIPTION' ) ) continue;
$single_part = "DESCRIPTION:";
}
return $parts;
}
add_filter( 'tribe_ical_feed_item', 'pos_ical_remove_description' );
This will basically make the description field empty, so it will not show up in the exported iCal file.
Let me know if this helps solve your problem!
Cheers,
Andras