MyBB Community Forums

Full Version: User Profile Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
http://www.thenunyclub.mybbnew.com/membe...ile&uid=13

Why is there HTML code showing up after the group image?
Did you add html to the group image field in the group's settings? If you did, remove it because group images can't contain HTML.
No HTML in that field..
Playing with the templates?

<!-- start: member_profile_groupimage -->
<img src="http://i32.photobucket.com/albums/d4/connormah/tncstuffy1.png" alt="<b><span style="color: #33CC99;">TNC Stuffy</span></b>" title="<b><span style="color: #33CC99;">TNC Stuffy</span></b>" /><br />
<!-- end: member_profile_groupimage -->

I think you might have a bit of code wrong there. Try altering the template, and removing the alt and title codes, and replacing them with plain text. Those html tags will not work there.
No, seriously, I did not play with THESE templates.

I'll take a look.
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="trow1">
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td class="trow1" width="75%">
<span class="largetext"><strong>{$formattedname}</strong></span><br />
<span class="smalltext">
{$usertitle}<br />
{$groupimage}
{$userstars}<br />
<br />
<strong>{$lang->registration_date}</strong> {$memregdate}<br />
<strong>{$lang->date_of_birth}</strong> {$membday} {$membdayage}<br />
<strong>{$lang->local_time}</strong> {$localtime}<br />
<strong>{$lang->postbit_status}</strong> {$online_status}
</span>
</td><td width="25%" align="right" valign="middle">{$avatar}</td></tr></table>
</td>
</tr>
{$awaybit}
</table>
<br />
<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td width="50%" valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_forum_info}</strong></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->joined}</strong></td>
<td class="trow1">{$memregdate}</td>
</tr>
<tr>
<td class="trow2"><strong>Last Seen Online:</strong></td>
<td class="trow2">{$memlastvisitdate} {$memlastvisittime}</td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}</a>)</span></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->timeonline}</strong></td>
<td class="trow2">{$timeonline}</td>
</tr>
{$reputation}<tr>
<td class="trow2" width="50%"><strong><a href="{$mybb->settings['bburl']}/plaza.php">{$lang->money}</a>:</strong></td>
<td class="trow2" width="50%">{$mymoney} <small>[<a href="plaza.php?action=page&amp;p=donate&amp;uid={$uid}">{$lang->donate}</a>]</small> ({$itemsbought} {$lang->items_purchased} {$post['inventory']})
</tr>
{$warning_level}
</table>
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>Contact Info</strong></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
</tr>
{$sendemail}
<tr>
<td class="trow2"><strong>{$lang->pm}</strong></td>
<td class="trow2"><a href="private.php?action=send&amp;uid={$memprofile['uid']}">{$lang->send_pm}</a></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->icq_number}</strong></td>
<td class="trow1"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=icq&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['icq']}</a></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->aim_screenname}</strong></td>
<td class="trow2"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=aim&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['aim']}</a></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->yahoo_id}</strong></td>
<td class="trow1"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=yahoo&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['yahoo']}</a></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->msn}</strong></td>
<td class="trow2"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=msn&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['msn']}</a></td>
</tr>
</table>
</td>
<td><img src="{$theme['imgdir']}/pixel.gif" height="1" width="8" alt=""/></td>
<td width="50%" valign="top">
{$profilefields}
{$signature}
{$modoptions}
</td>
</tr>
</table>
{$footer}
</body>
</html>


My template...can't find any problem.
Update..this is only for some profiles...

http://www.thenunyclub.mybbnew.com/showteam.php

Just click the green names.
In which case it must be that usergroup image and the settings for it.
That template isn't the one Tom posted, it's member_profile_groupimage that you may need to look at, if it is a template.
(2009-05-13, 02:24 PM)MattRogowski Wrote: [ -> ]That template isn't the one Tom posted, it's member_profile_groupimage that you may need to look at, if it is a template.

That's true, but if it's the template, then all user profiles would be effected... Wink
You make a good point Toungue
Right, let me clear things up.

I have group icons for only ONE GROUP...I am testing.

This problem is only showing up in SOME profiles..

Happening: http://www.thenunyclub.mybbnew.com/membe...ile&uid=10
Not Happening: http://www.thenunyclub.mybbnew.com/membe...ile&uid=64

In the place where I specify the icon, it is just the URL to the image.

I have no FTP access, therefore they are photobucket links.

Please PM me if you'd like a test admin account.
Pages: 1 2