Description: This will display a "View Profile" link to the account menu in user.php, which will take your users to their author profile page.
Requirements: eFiction 2.0
Difficulty: Easy
Modification History:
June 23, 2006 -- Released Modification
November 30, 2006 -- Updated, forgot a step
Files Involved:
- user.php
- languages/en.php
Instructions:
Open up user.php
Line 1, look for this:
-
<?php
-
// Mod: View Profile Link --------------------------------------------
Look for this section (begins at about line 133 as of the 6/4/06 patch):
-
function main( ) {
After $level, but before the closing semi-colon (;), add this:
-
, $useruid
Look for this: (Line 145)
-
$output .= "<div id=\"pagetitle\">"._USERACCOUNT."</div>
-
<div class=\"tblborder\" style=\"padding: 5px; width: 200px; margin: 0 auto;\">";
-
if(!$submissionsoff || $level)
-
{
-
$output .= "<a href=\"stories.php?action=newstory\">"._ADDNEWSTORY."</a><br />
-
<a href=\"stories.php?action=viewstories\">"._MANAGESTORIES."</a><br />
-
<a href=\"series.php?action=add\">"._ADDSERIES."</a><br />
-
<a href=\"series.php?action=manage\">"._MANAGESERIES."</a><br />";
-
}
-
$output .= "<a href=\"user.php?action=editbio\">"._EDITPERSONAL."</a><br />";
-
if($imageupload && !$submissionsoff)
-
$output .= "<a href=\"user.php?action=manageimages\">"._MANAGEIMAGES."</a><br />";
-
if($reviewsallowed)
-
$output .= "<a href=\"user.php?action=viewreviews\">"._VIEWREVIEWS."</a><br />";
-
if($favorites)
-
$output .= "<a href=\"user.php?action=manfaves\">"._MANAGEFAVORITES."</a><br />";
-
$output .= "<a href=\"user.php?action=stats\">"._STATS."</a><br /><a href=\"user.php?action=logout\">"._LOGOUT."</a><br />";
-
$output .= "</div>";
-
return $output;
-
}
-
// end main function
Inside that, look for this:
-
$output .= "<a href=\"user.php?action=editbio\">"._EDITPERSONAL."</a><br />";
Between the end of the line break tag (br /) and the end of the line (";), add this:
-
<a href=\"viewuser.php?uid=$useruid\">"._VIEWPROFILE."</a><br />
Open languages/en.php (or your language)
At the bottom of the file, look for this:
-
?>
Add this:
-
// View Profile Link Mod
Save, upload, and enjoy! ^_^
|
|

