Creating nested forum loops in bbPress [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question I’m creating a … Read more

Why does deactivating a plugin cause error: “You do not have sufficient permissions to access this page”?

We recently deactivated the bbPress plugin because we don’t use it anymore. Immediately following that, no admin users can get into the dashboard without hitting the infamous: “You do not have sufficient permissions to access this page?” We tried removing ALL plugins to rule out a dependance from one of those, but it didn’t work. … Read more

BBpress error wp-init [closed]

Closed. This question is off-topic. It is not currently accepting answers. Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question? Closed 6 years ago. Improve this question I installed bbpress with the latest … Read more

bbPress or WordPress + forum plugin?

I’ve been using bbPress for a while and I’ve noticed some bugs in my fresh installs. This makes me wonder if I should consider to just use WordPress with a forum plugin. Any experience building a bbPress website? Do you recommend a WordPress plugin to build forums? 4 Answers 4 I have used http://simple-press.com/ on … Read more

How to change role titles in Bbpress?

Default role titles in BBpress are “Keymaster” and “Participant”. I want to change them. I tried the solutions in this page but they didn’t work in my bbpress. Probably, the solutions are for old versions of bbpress. I have version 2.2.x. How can I change role labels in bbpress? 1 Answer 1 Have you tried … Read more

How to get the Role Name of the current user? (WordPress)

I currently have this snippet: $user = new WP_User(get_current_user_id()); echo $user->roles[1]; and the output the slug of the bbPress forum role. (roles[0] would be the general WP role but I don’t need that.) What I need is the role name, not the slug. So, the expected output should be something like “Keymaster”, “Participant”, “Spectator” etc. … Read more

How can I pass a variable to wp_ajax action?

I’m writing a plugin that pulls data from an external API and inserts it into a bbPress topic. Here’s some sample code: function bbp_ajax() { $topic_id = bbp_get_topic_id(); $the_issue_key = get_post_meta( $topic_id, ‘bbp_jira_issue_field’, true); $nonce = wp_create_nonce( ‘theNonce’ ); // jQuery AJAX Code, actions bbpAjax… } add_action ( ‘bbp_template_before_replies_loop’, ‘bbp_ajax’); function get_ajax_content() { check_ajax_referer( “theNonce” … Read more