Advertisement
brook-tribe

Hide Tooltip in Month View

Feb 13th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. add_action('tribe_events_after_footer', 'hide_events_cal_tooltip');
  2.  
  3. function hide_events_cal_tooltip ($excerpt) {
  4.     $disable_tooltip = '
  5.     <script type="text/javascript">
  6.     jQuery(window).load(function(){
  7.         jQuery(".tribe-events-calendar td div").each(function(){
  8.             jQuery(this).on("hover", function (e) {
  9.                 e.stopPropagation();
  10.             });
  11.         });
  12.     });
  13.     </script>';
  14.  
  15.     echo $disable_tooltip;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement