Search Results for 'bbpress'
-
Search Results
-
I have install and activated the bbPress plugin with no issue.
By looking at the All Users, I can see I am an Administrator for Site Role, and Keymaster for Forum Role.
If I log in with another Administrator, and change my role for Forum Role to “No Role for These Forums”, after I log into my account again, I would be able to see 3 menus “Forums”, “Topics”, “Replies” on the admin panel. However, after I click anyone of them, I will be leading to a page with “Cheatin’ uh?” message.
is there anyone has the same issue?
best regards
HughHey guys. So Ive been wondering this for a long time, and I just dont understand. Why is bbPress’ editor so bad? Everything uses lame tags and is very primitive. WordPress already has color and bold and italic and linking and everything integrated, so why doesn’t bbPress add this?
No one can actually tell me that bbPress is meant to be this way? Is there something stopping the devs from just importing the full editor over…?
Very curious…
I want the users to get email alerts every time their forum role changes to a specific role.
Namely, I have to notify them only if their role has changed from Spectator to Participant.
I found a way to do this with standard WordPress roles, but it doesn’t work with bbPress roles.
I tried changing
if ($new_role == 'contributor')toif ($new_role == 'participant')and even to this if($new_role == 'bbp_participant')– nothing worked.Perhaps someone knows the solution?
WordPress version: 3.8.2
bbPress version: 2.5.3Using this code I have made it to where only updates and rtmedia posts show up on my activity stream
/** * Activity Stream Default Updates */ function make_swa_show_notice_only( $retval ) { if ( bp_is_page( 'activity' ) ) { $retval['action'] = 'activity_update, rtmedia_update'; } return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'make_swa_show_notice_only' );I would like bbpress forum posts to show up on my wall as well. What would i put next to
‘activity_update, rtmedia_update’
in my code to make that happen? Thanks!