BuddyBoss Home – Web Support Forums Themes Boss. theme hide activity page id title and url

Viewing 6 posts - 1 through 6 (of 6 total)
  • Question

    #49782
    @surfbuddy

    Hi all, How can I hide the activity page id in the page title and url? I’m also using your Wall plugin. Thanks

    Answers

    #49940

    Anonymous
    @

    Hi @surfbuddy

    You can use following function for now, but it will remove all title modification done by Buddypress
    It’s default BuddyPress function which override the Titles

    
    function boss_title_modify()
    {
    remove_filter( 'wp_title', 'bp_modify_page_title', 20, 3 );
    }
    add_action( 'after_setup_theme', 'boss_title_modify' );
    

    Regards
    Varun Dubey

    #49965
    @surfbuddy

    Thanks. The title does change, but the page ID number still shows in the title and URL. Can it be removed from the title and url?

    #49984

    Anonymous
    @

    Hi @surfbuddy That id is specific activity id, and it is required to display activity, it can not be hidden
    Regards

    #50045
    @surfbuddy

    Ah, I see. Thanks!

    #50131

    Anonymous
    @

    I will mark this as closed

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘hide activity page id title and url’ is closed to new replies.