• Resolved tomajj

    (@tomajj)


    Hi! My problem is that iCal export always creates a new calendar for Outlook users, it doesn’t put the event on the default personal calendar automatically. That way we cannot keep a track of the events as we get multiple calendars created every time.

    We’ve also recorded a Loom video explaining this problem.

    Please help, thank you!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    Can you try adding this function to your theme’s functions.php file?

    add_filter( 'tribe_ical_properties', 'modify_ical_output' );
    
    function modify_ical_output( $ics ) {
        $find_this = "X-WR-CALDESC:Events for {something} \r\n";
        $replace_with = ''; // Remove completely
        return str_replace( $find_this, $replace_with, $ics );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘iCal feature creates new calendar’ is closed to new replies.