Last active
February 22, 2019 04:10
-
-
Save jentheo/44b1cb2fa6d4ffebf5cb284e739f1c4b to your computer and use it in GitHub Desktop.
Hide recurrence on home page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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