Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created October 29, 2014 17:44
Show Gist options
  • Save jesseeproductions/f70707565831aadea4d3 to your computer and use it in GitHub Desktop.
Save jesseeproductions/f70707565831aadea4d3 to your computer and use it in GitHub Desktop.
The Events Calendar Filter Bar - Move the Filter Bar Below the Title
/*
* The Events Calendar Filter Bar - Move the Filter Bar Below the Title
* @3.8
*/
add_action( 'wp_enqueue_scripts', 'removeTribeFilterBarDefaultDisplay', 50 );
function removeTribeFilterBarDefaultDisplay() {
$filterClass = TribeEventsFilterView::instance();
remove_action('tribe_events_before_template', array($filterClass, 'displaySidebar'), 25);
remove_action('tribe_events_bar_after_template', array($filterClass, 'displaySidebar'), 25);
add_action( 'tribe_events_after_header' , array($filterClass, 'displaySidebar' ), 25 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment