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

    #48049
    @anderew

    Hey,

    I don’t need this rss feature. How do I remove it from all tabs?

    Cheers,

    Andrew

    Answers

    #48309

    Anonymous
    @
    #48398
    @anderew

    Thanks but this is in relation to the wall plugin. See my screenshot. I don’t need the ‘News Feed’ link, how do I remove it?

    #48400
    @anderew

    You can find it in the personal profile wall 🙂

    #49180
    @vapvarun

    @anderew
    We have converted Activate tab as Wall Tab and it is compulsory to keep primary slug, if you will deactivate it other activity related tab will also throw 404 errors.

    
    function remove_item_from_nav() {
       global $bp;
          bp_core_remove_subnav_item( $bp->activity->slug, 'news-feed' );
       }
    add_action( 'init', 'remove_item_from_nav' );
    

    It should work . but due to our last update in the wall plugin which allow option to select primary tab as Wall or News feed, it’s not working

    I have submitted to developers to take a look of it.
    You can also hide easily via css no need to use custom php codes

    
    #news-feed-personal-li
    {
    display:none;
    }
    

    Regards
    Varun Dubey

    #50269
    @costyclan

    @vapvarun I am also trying to remove the ‘news feed’ by simply hiding it using your code above in the custom.css however it hasn’t worked for me??
    Am I correct that I just copy 2nd lot of code above and paste into custom.css on dashboard?

    #50280
    @costyclan

    @vapvarun I’ve just worked out that the code above is working on desktop layout but not mobile. How can I apply this to mobile also?

    #66154
    @costyclan

    @vapvarun I’ve tried your code above to hide ‘News Feed’ from Wall but it’s still showing. Any advice?

    #66248
    @vapvarun

    @costyclan Sorry for delayed response
    You can easily hide with custom css and it’s also working
    Regards

Viewing 9 posts - 1 through 9 (of 9 total)
  • The question ‘Remove News Feed’ is closed to new replies.