BakerMan

Change "Other" meta group title (hack!)

Aug 19th, 2013
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. add_filter('tribe_get_meta_group', 'change_other_meta_title', 20, 2);
  2.  
  3. function change_other_meta_title($html, $id) {
  4.     if ('tribe_event_group_custom_meta' !== $id) return $html;
  5.     $target = '<h3 class="tribe-events-single-section-title">Other</h3>';
  6.     $replace = '<h3 class="tribe-events-single-section-title"> Teapot Characteristics </h3>';
  7.     return str_replace($target, $replace, $html);
  8. }
Add Comment
Please, Sign In to add comment