Edit your profile link
Posted: 02 Sep 2010, 20:20
Displays a profile link to take your members straight to edit there profile in line with user control panel.
Open includes/functions.php
find:
add after:
Open language/en/common.php
find:
add after:
Open styles/prosilver/template/overall_header.html
find:
add after:
Refresh template for prosilver.
pic: Open styles/subsilver2/template/overall_header.html
find:
replace with:
Refresh template for subsilver2
pic:
Open includes/functions.php
find:
Code: Select all
'U_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx"),
Code: Select all
'U_EDIT_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=172'),
find:
Code: Select all
'PROFILE' => 'User Control Panel',
Code: Select all
'EDIT_PROFILE' => 'Edit Your Profile',
find:
Code: Select all
<li class="icon-ucp">
Code: Select all
<a href="{U_EDIT_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_EDIT_PROFILE}</a> •
pic: Open styles/subsilver2/template/overall_header.html
find:
Code: Select all
<!-- IF S_USER_LOGGED_IN --> <a href="{U_PROFILE}"><img src="{T_THEME_PATH}/images/icon_mini_profile.gif" width="12" height="13" alt="*" /> {L_PROFILE}</a><!-- ENDIF -->
Code: Select all
<!-- IF S_USER_LOGGED_IN --> <a href="{U_EDIT_PROFILE}" title="{L_PROFILE}" accesskey="e"><img src="{T_THEME_PATH}/images/icon_mini_profile.gif" width="12" height="13" alt="*" /> {L_EDIT_PROFILE}</a> • <a href="{U_PROFILE}"> {L_PROFILE}</a><!-- ENDIF -->
pic: