Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created August 20, 2020 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/9ecad0fbc9dd707f06157bd6509cbff0 to your computer and use it in GitHub Desktop.
Save Pebblo/9ecad0fbc9dd707f06157bd6509cbff0 to your computer and use it in GitHub Desktop.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_filter(
'FHEE__EED_Ical__download_ics_file_ics_data',
'tw_ee_filter_ics_data',
10,
2
);
function tw_ee_filter_ics_data(
$ics_data,
$datetime
) {
unset($ics_data['URL;VALUE=URI'])
return $ics_data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment