Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/21/2014 11:08:04 PM (11 years ago)
Author:
johnjamesjacoby
Message:

First pass at Profile Settings for improved profile field visibility UX:

  • Adds /members/single/settings/profile.php template to bp-legacy and bp-default.
  • Introduces bp-xprofile.settings.php for Settings specific functionality going forward.
  • Introduces actions & screens for handling output and saving of profile visibility data.
  • Introduces _is_ function for identifying the new component/action URL.
  • See #5352. (still more @todo...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/members/single/settings.php

    r6627 r7960  
    3131    locate_template( array( 'members/single/settings/general.php' ), true );
    3232
     33elseif ( bp_is_current_action( 'profile' ) ) :
     34    locate_template( array( 'members/single/settings/profile.php' ), true );
     35
    3336else :
    3437    locate_template( array( 'members/single/plugins.php' ), true );
    3538
    3639endif;
    37 
    38 ?>
Note: See TracChangeset for help on using the changeset viewer.