Skip to content

Instantly share code, notes, and snippets.

@jentheo
Last active February 22, 2019 04:10
Show Gist options
  • Save jentheo/44b1cb2fa6d4ffebf5cb284e739f1c4b to your computer and use it in GitHub Desktop.
Save jentheo/44b1cb2fa6d4ffebf5cb284e739f1c4b to your computer and use it in GitHub Desktop.
Hide recurrence on home page
function tribe_hide_recurrence_on_homepage( $hide ) {
if ( is_front_page() ) {
$hide = true;
}
return $hide;
}
add_filter( 'tribe_events_pro_should_hide_recurrence', 'tribe_hide_recurrence_on_homepage' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment