Where To Find bb_profile_data(); In bbPress?

From this reference you get the following info: Function and Method Cross Reference bb_profile_data() Defined at: /bb-includes/functions.bb-template.php -> line 2405 Referenced 1 times: /bb-templates/kakumei/profile.php -> line 30 so you should check your profile template. If you have ssh access to your site, try # grep “bb_profile_data” -R /the/path/to/your/site/ in the shell command line, to search … Read more

Renaming/translating “your profile” page

This is more of PHP implementation detail. If you want a precise match you can do something like: if ( isset( $words[$translated] ) ) return $words[$translated]; return $translated; PS you might want to declare $words as static, so that array is reused and not continuously re-created on each function call (which would be a lot … Read more

Display all existing members

You can use get_users(). $args = array( ‘fields’ => ‘all_with_meta’, ); $users = get_users( $args ); foreach( $users as $user ) { // your display code here var_dump( $user ); // so you can see what’s in $user } all_with_meta will get the user and all the associated meta, if I’m reading the Codex page … Read more

Renaming profile sections

To clarify the “plugin/functions.php” issue, see: Where do I put the code snippets I found here or somewhere else on the web? You can use the following modified version from toscho’s Retranslate Plugin. I changed post_type for pagenow. Configure the translations in the final array. <?php /* Plugin Name: Retranslate Profile Page Description: Adds translations. … Read more