 LPH
|
Now that the site is somewhat stable, it’s time to fix some of the more annoying features.
(1) Clicking on a person’s avatar now sends the browser to the person’s profile page.
(2) /member/ was removed from the URLs, so now the URL is http://www.thechembook.com/membername – much nicer.
Both were done in the wp-config file:
define ( 'BP_ENABLE_ROOT_PROFILES', true );
define( 'BP_DEFAULT_COMPONENT', 'profile' );
|