Guest User

Untitled

a guest
Oct 9th, 2013
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. My code:
  2. add_action( ‘wp_head’, ‘custom_event_meta’ );
  3. function custom_event_meta(){
  4. tribe_set_the_meta_visibility(‘tribe_event_organizer’, FALSE, ‘meta_group’);
  5. }
  6.  
  7. code in tribe_get_meta_group:
  8. // internal check for hiding items in the meta
  9. if( $is_the_meta && ! $meta_group['show_on_meta'] ){
  10. return false;
  11. }
  12.  
  13. change to make it work:
  14. if( ! $is_the_meta && ! $meta_group['show_on_meta'] )
Advertisement
Add Comment
Please, Sign In to add comment