BuddyDev

Documentation

Cosmic Buddy pro Theme Documentation:-

  • Admin Options
  • Customization

Admin Options:-

All the Admin options of BP Mag theme applies to Cosmic BuddyPro except the sub navigation is not used. Please read the Understanding BP mag admin Options for More Details.

Customization:-

Enable profile Snippet On user profile

Please put the following code in bp-custom.php to enable the profile snippet(basi Info on user profile):-

[sourcecode language="php"]

add_filter("bpcb_member_profile_basic_fields","cb_show_profile_fields");

function cb_show_profile_fields($fields){

$fields=array("Name","About","Field 3 name", "field 4 name");

return $fields;

}

[/sourcecode]

Where "Name", "About" etc are the name of custom xprofile fields you define in BuddyPress->profile field setup. Please change the above array with your own xprofile fields.