Forum Replies Created
- 
		
			
shanebp the $bp->displayed_user->iddoesn’t seem to work.
 Butbp_displayed_user_id()works well for meAnyone? Anyone?? If you’re using wordpress 3.3+, you can use the wp_editor function in your buddypress powered theme. For example, the is the textarea for posting reply for group forums in BuddyPress Default theme located in /buddypress/bp-themes/bp-default/groups/single/forum : 
 `
 
 `
 Change it to
 `` 
 Where the first quote (‘Type here …’) is the initial content for the editor (You can just leave it as ” if you don’t want any initial content) and the second quote (‘reply_text’) is the id of the editor.By default, wp_editor will use the default TinyMCE editor that comes with WordPress but you can change it via a plugin e.g. CKEditor For WordPress Just a bump You will need something like BP Group Management for easier management. If you want to limit group creation to admin, go to BuddyPress > Setting in your dashboard and check “Restrict group creation to Site Admins?”. You may also try BuddyPress Restrict Group Creation & add some rules so members can’t create a group until they reach the requirements 1. Have you tried BuddyPress Group Forums & bbPress (or known as Sitewide forums). Both of them integrate well with BuddyPress and will show up in the activity stream when someone start a topic or post a reply. 
 https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/2. I think most of the BuddyPress compatible theme should fits your need. You just need to configure it so it looks like a normal blogs in the front while still maintain the social media functions. Yes it’s located in your style.css: 
 http://www.adamnevil.net/wp-content/themes/unsigned/style.cssFind these lines 
 `
 a.button,
 a.comment-reply-link,
 #commentform #submit,
 .submit,
 input[type=submit],
 input.button,
 button.button {
 display: inline-block;
 margin: 5px;
 padding: 6px 12px;
 border: none;
 color: white !important;
 text-align: center;
 text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.3);
 text-decoration: none;
 text-transform: uppercase;
 font-size: 1em;
 `Change the 
 `
 color: white !important;
 `
 to something like
 `
 color: #222 !important;
 `