@snecz
Active 3 years, 11 months ago
-
David Cavins replied to the topic Permalinks slugs in the forum How-to & Troubleshooting 7 years ago
Hi @snecz–
Yes, you can filter the starred slug using the
bp_get_messages_starred_slug
filter. Unfortunately, the ‘sentbox’ slug is not currently customizable.Here’s an example of how you might filter the starred slug:
[Read more]
add_filter( 'bp_get_messages_starred_slug', 'bp_codex_filter_starred_slug' );
function bp_codex_filter_starred_slug( $slug )…