Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Forked from joshfeck/functions.php
Created September 9, 2025 10:29
Show Gist options
  • Select an option

  • Save Pebblo/936846451ee9147764493dfda419d46d to your computer and use it in GitHub Desktop.

Select an option

Save Pebblo/936846451ee9147764493dfda419d46d to your computer and use it in GitHub Desktop.
Disables the calendar icon functionality that was added in Event Espresso
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_action( 'template_redirect', 'my_remove_ical_link' );
function my_remove_ical_link() {
remove_filter( 'FHEE__espresso_list_of_event_dates__datetime_html', array( 'EED_Ical', 'generate_add_to_iCal_button' ), 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment