Advertisement
BakerMan

Change title of "Other" meta group

Dec 2nd, 2013
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. add_filter('tribe_get_meta_group', 'change_custom_meta_group_title', 10, 2);
  2.  
  3. function change_custom_meta_group_title($html, $meta_group_id) {
  4.     if ('tribe_event_group_custom_meta' !== $meta_group_id) return $html;
  5.     $look_for = '<h3 class="tribe-events-single-section-title">Other</h3>';
  6.     $replace_with = '<h3 class="tribe-events-single-section-title">Additional Information</h3>';
  7.     return str_replace($look_for, $replace_with, $html);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement