How to edit bbPress template files – WordPress + BuddyPress + bbPress? [closed]

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 years ago. Improve this question I am using BuddyPress 1.6.1, bbPress 2.1.2 and WordPress 3.4.2 I follow the guide here. In the end, I did the … Read more

How to prevent spam users registering even with registration disabled

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 likely the cause but I don’t know how to prevent the registration. I use Wanguard and bbPress moderation plugins so I am preventing them from actually … Read more

how to redirect to a custom password retrieval page

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 find the filter/hook/action that “hijacks” the calls to wp-login.php. My biggest problem is with the lost-password page, I want to redirect with a notice, I can … Read more

How do I set up real anonymous posting in bbpress forums? [closed]

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 years ago. Improve this question I have bbpress-post-topics plugin installed so that my comments forms are replaced by a bbpress forum topic, it’s working but I … Read more

How to keep plugin translations after updates?

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 /wp-content/languages/ */ Actually, this is not a new problem and yes, they are right. This is a big problem if you are using WordPress plugins with … Read more

Add custom menu item using wp_nav_menu_items filter

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 { $user_data = bbp_get_user_profile_url( get_current_user_id() ); $profilelink = ‘<li><a href=”‘.$user_data.’&edit” >Profile</a></li>’; $menu = $menu . $profilelink; return $menu; } } This code correctly display profile link … Read more