Skip to content

Instantly share code, notes, and snippets.

@lepittenger
Created February 22, 2016 23:28
Show Gist options
  • Save lepittenger/6d19927a46f9e91bbf9d to your computer and use it in GitHub Desktop.
Save lepittenger/6d19927a46f9e91bbf9d to your computer and use it in GitHub Desktop.
the events calendar + genesis: show community events templates at full width
/*
* Genesis Layout of The Event Calendar Single Templates
* Options - full-width-content, content-sidebar, sidebar-content, content-sidebar-sidebar, sidebar-sidebar-content, sidebar-content-sidebar
*/
//Target Community Events Edit Form and My Event's List
add_filter( 'genesis_site_layout', 'tribe_genesis_community_layouts' );
function tribe_genesis_community_layouts() {
if( tribe_is_community_my_events_page() || tribe_is_community_edit_event_page() ) {
return 'full-width-content';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment