All posts in BBPress

Disable Bbpress Scripts if Not on Forum Page

How to Add/remove Registration Page Fields in BBPress

If you would like to add or remove fields on BBPress’ registration page, you can do this through this plugin.

To remove all the fields except for ‘username’ and ‘email’ you need the following:


unset( $fields['occ'] );
unset( $fields['interest'] );
unset( $fields['user_url'] );
unset( $fields['from'] );

Modifying Database URI in Bbpress

You can override the database value in your bb-config.php file by using the following code.

$bb->uri = 'http://example.com/bbpress/';

In the database you can modify this value by checking the bb_meta table, there are the following keys which store the URI:

  • wp_siteurl
  • wp_home
  • uri