Skip to:
Content

BuddyPress.org

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#5732 closed defect (bug) (no action required)

"Settings" Tab

Reported by: elpix's profile elpix Owned by:
Milestone: Priority: normal
Severity: normal Version: 2.0
Component: Appearance - Template Pack Keywords:
Cc:

Description

Hi there,

At the end of the file plugins\buddypress\bp-templates\bp-legacy\buddypress\members\single\settings.php , I can see :

switch ( bp_current_action() ) :
	case 'notifications'  :
		bp_get_template_part( 'members/single/settings/notifications'  );
		break;
	case 'capabilities'   :
		bp_get_template_part( 'members/single/settings/capabilities'   );
		break;
	case 'delete-account' :
		bp_get_template_part( 'members/single/settings/delete-account' );
		break;
	case 'general'        :
		bp_get_template_part( 'members/single/settings/general'        );
		break;
	default:
		bp_get_template_part( 'members/single/plugins'                 );
		break;
endswitch;

But in the folder plugins\buddypress\bp-templates\bp-legacy\buddypress\members\single I don't have any "Plugins" folder.

So on my website I have a bug : The page /members/blozano/settings/profile/ has sidebars but the content is empty.

I think the folder "Plugins" is missing in the bp-legacy template.

Change History (4)

#1 @r-a-y
11 years ago

  • Keywords reporter-feedback added

members/single/plugins refers to members/single/plugins.php and not a folder.

Your theme sounds like it's an older bp-default derivative. We added a fix for bp-default themes for the "Settings > Profile" page in v2.0.1.

Have you tried upgrading to BP 2.0.1?

Last edited 11 years ago by r-a-y (previous) (diff)

#2 @elpix
11 years ago

OK, just added "profile.php" in my theme (in members/single/settings) and it works :-)
I've changed in the code "members/single/plugins" by "members/single/plugins.php"

Thanks a lot !

#3 @r-a-y
11 years ago

  • Keywords reporter-feedback removed
  • Milestone Awaiting Review deleted
  • Priority changed from highest to normal
  • Resolution set to invalid
  • Severity changed from major to normal
  • Status changed from new to closed

Cool, thanks for confirming it was a problem with your theme.

#4 @elpix
11 years ago

Yes, just a file missing in the theme :-)

Note: See TracTickets for help on using tickets.