/**
  * Initialise WP hooks
  */
 private static function init_hooks()
 {
     if (LFAPPS_Chat::chat_active()) {
         add_action('wp_footer', array('LFAPPS_Chat', 'init_script'));
         // Set comments_template filter to maximum value to always override the default commenting widget
         add_filter('comments_template', array('LFAPPS_Chat', 'comments_template'), self::lf_widget_priority());
         add_filter('comments_number', array('LFAPPS_Chat', 'comments_number'), 10, 2);
         add_shortcode('livefyre_livechat', array('LFAPPS_Chat', 'init_shortcode'));
     }
 }