Created
October 29, 2014 17:44
-
-
Save jesseeproductions/f70707565831aadea4d3 to your computer and use it in GitHub Desktop.
The Events Calendar Filter Bar - Move the Filter Bar Below the Title
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
/* | |
* 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