Advertisement
BakerMan

Allow comment form in venues TEC 3

Aug 5th, 2013
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_filter('comments_template', 'allow_tribe_venue_commentform', 20);
  2.  
  3. function allow_tribe_venue_commentform($template) {
  4.     global $wp_query;
  5.  
  6.     if ( ! class_exists('TribeEvents')) return $template;
  7.     elseif ($wp_query->query['post_type'] === TribeEvents::VENUE_POST_TYPE)
  8.         $template = str_replace('no-comments', 'comments', $template);
  9.  
  10.     return $template;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement