Forgot to add......
The register.php and functions.php were originally not included in the previous Frisco version (v1.5.04). I've added them to the theme's root directory for customization of the sign up page functions.
The customizations are such;
register.php - All sign up functions are themed in one place, including lost password, reset password, sign-in...meaning the user will stay at the same Sign-In/Sign Up page regardless of what he did with the Login fields.
functions.php - I have created a 'My Profile' menu position along the main nav bar with the following code inserted at the end of functions.php before '}' and after '?>'
// Filter wp_nav_menu() to add profile link
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
function my_nav_menu_profile_link($menu) {
if (!is_user_logged_in())
return $menu;
else
$profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Profile', 'buddypress' ) . '</a></li>';
$menu = $menu . $profilelink;
return $menu;
}
Now since v1.6.13 have a functions.php file, can I simply insert this code in it?