You are here

function og_menu_og_menu_audience_fields in Organic Groups Menu (OG Menu) 7.3

Implements hook_og_menu_audience_fields_alter().

File

./og_menu.api.php, line 24
Documentation of the API functions exposed by this module.

Code

function og_menu_og_menu_audience_fields(&$group_audience_fields, $type) {
  if ($type == 'group_page') {
    unset($group_audience_fields['some_field']);
  }
}