Skip to:
Content
Pages
Categories
Search
Top
Bottom

Permalinks slugs


  • snecz
    Participant

    @snecz

    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 1 replies (of 1 total)

  • David Cavins
    Keymaster

    @dcavins

    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';
    }
    
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar