Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Remove Comment under Activity Feed

  • How do I remove the comment under Activity Feed?

    also, is it possible to change the Favorite and Follower buttons to my own icons?

    Is there a search form for the support forum? I keep trying to find my answers here but having no luck

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’ve created a child theme & am using bp-default theme. Is there a way I could remove the comment under the Activity Feed? Or could I maybe change the “Comment” button to just a button that gets clicked (similar to “like” feature) and still counted?

    Also, is there any way I can change other buttons/icons through the child theme?

    site is: http://sst1.everythingeasternbeaches.com

    Thanks in advance.


    danbpfr
    Participant

    @chouf1


    @mercime
    Keymaster

    @mercime

    @goviral Closed your other thread with basically the same questions.

    1. To remove commenting (and comment button) in activity stream,

    Just add this to your theme’s functions.php file

    `// Do not allow commenting in activity stream
    add_filter(‘bp_activity_can_comment’,’__return_false’);`

    2. is there any way I can change other buttons/icons through the child theme?

    Simplest way is to use text-indent to the specific button and add the image background. For example, for the Activity Favorite button, you’d add something like this in your theme’s style.css file

    `#activity-stream .activity-meta .fav {
    background: #000 url(“images/myfavoriteimage.png”) 0 0 no-repeat;
    text-indent: -9999px;
    }`

    then change background color or image when you hover over the favorite link. Use Firefox add-on Firebug or use Chrome developer to identify selectors to change styles/values for in your stylesheet.

    Thanks so much for your help & sorry for duplicate entry.

    Cheers

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Resolved] Remove Comment under Activity Feed’ is closed to new replies.
Skip to toolbar