Advertisement
Guest User

Remove tribe-bar-date z-index

a guest
Oct 24th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_filter('tribe-events-bar-filters', 'reduce_tribal_z_index');
  2.  
  3. function reduce_tribal_z_index(array $filters) {
  4.     if (isset($filters['tribe-bar-date']['html']))
  5.         $filters['tribe-bar-date']['html'] = str_replace('z-index:10000', '', $filters['tribe-bar-date']['html']);
  6.  
  7.     return $filters;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement