Hi sharmavishal.
May i ask which theme you used in the end? Was it a free one? Id like to use a theme which should work so i can tell whether the problem is the theme or not.
Donmik, i tried this but with no luck: –
If you can add this support, you should copy edit.php file from wp-content/plugins/buddypress/bp-themes/bp-default/members/single/profile directory into Msocial/buddypress/members/single/profile directory (you should create these directories) and in this overriden file add this line of code.
<?php
/**
* BuddyPress - Users Profile
*
* @package BuddyPress
* @subpackage bp-default
*/
?>
<div class="item-list-tabs no-ajax" id="subnav" role="navigation">
<ul>
<?php bp_get_options_nav(); ?>
</ul>
</div><!-- .item-list-tabs -->
<?php do_action( 'bp_before_profile_content' ); ?>
<div class="profile" role="main">
<?php do_action ( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
<?php
// Profile Edit
<?php do_action ( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
if ( bp_is_current_action( 'edit' ) )
locate_template( array( 'members/single/profile/edit.php' ), true );
// Change Avatar
elseif ( bp_is_current_action( 'change-avatar' ) )
locate_template( array( 'members/single/profile/change-avatar.php' ), true );
// Display XProfile
elseif ( bp_is_active( 'xprofile' ) )
locate_template( array( 'members/single/profile/profile-loop.php' ), true );
// Display WordPress profile (fallback)
else
locate_template( array( 'members/single/profile/profile-wp.php' ), true );
?>
</div><!-- .profile -->
<?php do_action( 'bp_after_profile_content' ); ?>