group forum slug
-
Hi,
I am trying to change the group forum slug. E.g.
from
‘mysite.com/groups/mygroup/forum’
to
‘mysite.com/groups/mygroup/discussion’I am using this code:
function gi_rename_group_slug() { global $bp; if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) { $bp->bp_options_nav[$bp->groups->current_group->slug]['forum']['slug'] = 'discussion'; } } add_action('bp_init', 'gi_rename_group_slug');
Unfortunately, nothing happens. What is the error? Thanks in advance.
—-
WP 4.8
bbpress 2.5.12
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.