Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor leahkoerper

    (@leahkoerper)

    Hi AndersAng,

    Thanks for your note. Can you try adding this snippet to your functions.php file and see if that works?

    add_filter( 'tribe_ical_properties', 'change_tribe_ical_filename' );
    function change_tribe_ical_filename( $content ) {
    	header( 'Content-Disposition: attachment; filename="NEW_FILENAME.ics"' );
    	return $content;
    }

    Thanks,
    Leah

    Plugin Contributor leahkoerper

    (@leahkoerper)

    It’s been a month since we last heard from you, so in accordance with our forum guidelines I’m marking this thread resolved. Thanks for your support!

    ~Leah

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change iCal filename’ is closed to new replies.