Skip to content

Instantly share code, notes, and snippets.

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 kimcoleman/f158d00265dce9038e0fe5a3afa2d899 to your computer and use it in GitHub Desktop.
Save kimcoleman/f158d00265dce9038e0fe5a3afa2d899 to your computer and use it in GitHub Desktop.
Remove the Memberlite Banner from the category archive for The Events Calendar events.
<?php
/**
* Remove the Memberlite Banner from the category archive for The Events Calendar events.
*/
function my_memberlite_remove_banner_on_events_archive( $show ) {
// Let's not do this if it is not the homepage
$show = is_post_type_archive( array( 'tribe_events' ) ) ? false : true;
return $show;
}
add_filter( 'memberlite_banner_show', 'my_memberlite_remove_banner_on_events_archive', 15 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment