Hi, I want to change permalinks slugs for my language. I’ve found this article. I’ve changed messages slug but I don’t know how to change “sentbox” or “starred” for example. Is there any way to change these and other slugs?
Viewing 3 replies - 1 through 3 (of 3 total)
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:
add_filter( 'bp_get_messages_starred_slug', 'bp_codex_filter_starred_slug' );
function bp_codex_filter_starred_slug( $slug ) {
return 'important';
}
My messages slug is not even working, I am truly stuck.
You should create your own topic with specificity to your situation, instead of making comments on topics that are outdated and quite possibly irrelevant.
Closing this topic due to the nature of it’s age (8 years old).
Viewing 3 replies - 1 through 3 (of 3 total)