Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7...
I have WordPress Multisite with bbPress. I’ve disabled new user registration from network settings but I still seem to get new registrations regardless. I’ve read that bbPress is most...
I have a new site and I’m using bbpress beta-3 with it, I’ve created custom login/register/lost-password pages with the custom templates supplied with bbpress and I can’t seem to...
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7...
I just installed bbPress 2.0.2 forum plugin for WordPress, and would like to change the text of link Home to iGeek (or anything else, for that matter). So the...
I am using bbPress 2x and modified the plugin to use the new wp_editor in place of the textarea for adding new topics and replies. This part works beautifully....
I have a WordPress site at domain.com and a BBPress install at domain.com/subfolder the wp site has a menu item that goes to the forums, and I’d like the...
bbPress’ language folder (wp-content/plugins/bbpress/bbp-languages) has that warning: /** * Do not put custom translations here. They will be deleted on bbPress updates. * * Keep custom bbPress translations in...
I have added a snippet to add a “Profile” link to my website navigation menu. My code: add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link'); function my_nav_menu_profile_link($menu) { if (!is_user_logged_in()){ return $menu; } else...
How can I check if I am on a forum page or forum post inside my theme. I am using the bbpress plugin (not standalone bbpress). There should be...