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.
@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
goviral
@goviral
12 years, 5 months ago
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