Re: Displaying Categories in Groups
If you’re trying to check whether the group id is equal to 14, you’ll want something like this:
`global $bp;
if ( $bp->groups->current_group->id == 14 )
`
The groupmeta code you are currently using is looking for the existence of a piece of groupmeta with the meta_key ’14’. Is that what you mean to be doing?