Find Answers and Get Support › Forums › Gwangi – PRO Multi-Purpose Membership, Social Network & BuddyPress Community Theme › Theme Customizer › Additional CSS › Hide CSS button on feeds
- This topic has 5 replies, 2 voices, and was last updated 6 years, 2 months ago by
Themosaurus.
-
AuthorPosts
-
alexParticipant@abourne
- 81 Topics
- 259 Posts
How to remove the ‘RSS’ button?
I tried adding snippet: https://pastebin.com/Jpc9GnAx
function bp_remove_feeds() { remove_action( 'wp', 'bp_activity_action_sitewide_feed', 3 ); remove_action( 'wp', 'bp_activity_action_personal_feed', 3 ); remove_action( 'wp', 'bp_activity_action_friends_feed', 3 ); remove_action( 'wp', 'bp_activity_action_my_groups_feed', 3 ); remove_action( 'wp', 'bp_activity_action_mentions_feed', 3 ); remove_action( 'wp', 'bp_activity_action_favorites_feed', 3 ); remove_action( 'wp', 'groups_action_group_feed', 3 ); } add_action('init', 'bp_remove_feeds');
Also tried adding CSS:
li.feed {
display: none;
}.is-mobile #buddypress div#subnav.item-list-tabs ul li.feed {
display: none !important;
}li#activity-favorites, li#activity-favs-personal-li, a#bp-admin-activity-favs, .activity-meta a.fav {display:none;}
.buddypress .item-list-tabs>ul>li.feed {
display: none;
}Searched many forums. No outcome 🙁
November 23, 2018 at 21:19 #3777@themosaurus- 1 Topics
- 1675 Posts
Hi @abourne,
Could try the following CSS code snippet please?
.buddypress.groups .feed { display: none; }
To add this code snippet to your site, we recommend that you paste it to the Custom CSS panel of your WordPress Customizer. Just go to your dashboard and navigate to “Appearance > Customize > Additional CSS”.
All the best,
November 27, 2018 at 12:23 #3867@themosaurus- 1 Topics
- 1675 Posts
You’re welcome. ?
Best regards,
December 3, 2018 at 12:44 #3988 -
AuthorPosts
The topic ‘Hide CSS button on feeds’ is closed to new replies.