Changing BuddyPress Groups Slug
-
Hi there,
After I successfully altered all translations described in this guide, I now wish to alter the
groups
slug to something else.I think I am close. Changing the
BP_GROUPS_SLUG
is deprecated, so instead, I found that you can change the slug by uploading the followingbp-custom.php
file into thewp-content/plugins/
directory:<?php add_filter( 'bp_get_groups_root_slug', function() { return 'teams'; } );
This changes the slug, but unfortunately also makes all group-related pages result in a 404.
What do I do to fix this? Thanks for your help!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.