Advertisement
BakerMan

Canvas/TEC list view bug fix

Feb 7th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function tribe_woo_lists_view_fix( $tpl ) {
  2.     if ( tribe_is_list_view() )
  3.         return TribeEventsTemplates::getTemplateHierarchy( 'list', array( 'disable_view_check' => true ) );
  4.  
  5.     return $tpl;
  6. }
  7.  
  8. add_filter( 'tribe_events_current_view_template', 'tribe_woo_lists_view_fix' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement