Dzo Posted August 30, 2006 Share Posted August 30, 2006 Hello,What I am wanting to do is change the the user profile when viewing topics on the forum. I want to move the user avatar to the top on the profile rather than having NICKNAME, USER GROUP then USER AVATAR.[b]So, after modifying the code, it should look like this.[/b][img]http://img92.imageshack.us/img92/7942/profileev1.png[/img][b]This is what it looks like NOW![/b][img]http://img291.imageshack.us/img291/6239/profilefalsefi4.png[/img][b]Here is the code that needs editing for this to work.[/b][code]echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";if ($rows != 0) {$result = dbquery("SELECT p.*, fa.attach_id, fa.attach_name, fa.attach_ext, fa.attach_size, u.*, u2.user_name AS edit_name FROM ".$db_prefix."posts pLEFT JOIN ".$db_prefix."forum_attachments fa USING(post_id)LEFT JOIN ".$db_prefix."users u ON p.post_author = u.user_idLEFT JOIN ".$db_prefix."users u2 ON p.post_edituser = u2.user_id AND post_edituser > '0'WHERE p.thread_id='$thread_id' ORDER BY post_datestamp LIMIT $rowstart,$posts_per_page");$numrows = dbrows($result);while ($data = dbarray($result)) {$message = $data['post_message'];if ($data['post_showsig']) { $message = $message."\n\n<hr>".$data['user_sig']; }if ($data['post_smileys']) { $message = parsesmileys($message); }$message = parseubb($message);$message = nl2br($message);if ($data['post_edittime'] != "0") {$edituser = "<a href='../profile.php?lookup=".$data['post_edituser']."'>".$data['edit_name']."</a>";$edittime = showdate("forumdate", $data['post_edittime']);}$is_mod = in_array($data['user_id'], $forum_mods) && $data['user_level'] < "102" ? true : false;echo "<tr><td width='145' class='tbl2'>".$locale['501']."</td><td class='tbl2'><a name='post_".$data['post_id']."' id='post_".$data['post_id']."'></a>".$data['post_subject']."</td></tr><tr><td valign='top' rowspan='3' width='145' class='tbl1'><a href='../profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br><span class='alt'>".($is_mod ? $locale['userf1'] : getuserlevel($data['user_level']))."</span><br><br>\n";if ($data['user_avatar'] != "") {if ($data['user_avatar'] != "") {echo "<img src='".IMAGES."avatars/".$data['user_avatar']."' alt='".$locale['567']."'><br><br>\n";$height = "185";} else {$height = "70";} }echo "<span class='alt'>".$locale['502']."</span> ".$data['user_posts']."<br>\n";if ($data['user_location']) echo "<span class='alt'>".$locale['503']."</span> ".$data['user_location']."<br>\n";echo "<span class='alt'>".$locale['504']."</span> ".showdate("%d.%m.%y", $data['user_joined'])."</td>[/code][b]Thanks...[/b] Quote Link to comment https://forums.phpfreaks.com/topic/19139-php-fusion-editing-user-profile/ Share on other sites More sharing options...
ober Posted August 30, 2006 Share Posted August 30, 2006 Third party scripts... please only post PHP that you have written yourself. MOVED. Quote Link to comment https://forums.phpfreaks.com/topic/19139-php-fusion-editing-user-profile/#findComment-82790 Share on other sites More sharing options...
Dzo Posted August 30, 2006 Author Share Posted August 30, 2006 Sorry, I wasn't aware of this... Quote Link to comment https://forums.phpfreaks.com/topic/19139-php-fusion-editing-user-profile/#findComment-82797 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.