MyBB Community Forums

Full Version: People get 2nd WebSite slot when they fill the first one.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When someone fills his "Website : " slot in profile informations, they get another 2nd "Website :" in their profile page which is blank.

How can I fix this bug?

Image :
[Image: 68lMV0.jpg]

Anyone?
Can you post your Member Templates > member_profile_website template?
<tr>
	<td class="{$bgcolor}"><strong>{$lang->homepage}</strong></td>
	<td class="{$bgcolor}"><a href="{$memprofile['website']}" target="_blank">{$memprofile['website']}</a></td>
</tr>

This is how it looks.
(2015-10-16, 10:23 AM)Darkrad Wrote: [ -> ]
<tr>
	<td class="{$bgcolor}"><strong>{$lang->homepage}</strong></td>
	<td class="{$bgcolor}"><a href="{$memprofile['website']}" target="_blank">{$memprofile['website']}</a></td>
</tr>

This is how it looks.

replace it by thisĀ 
<tr>
	<td class="{$bgcolor}"><strong>{$lang->homepage}</strong></td>
	<td class="{$bgcolor}"><a href="{$memprofile['website']}" target="_blank"></a></td>
</tr>
Now I got 2 blank Website :
Can you copy/paste your "member_profile_contact_details" template? I think you have the website row in there twice.
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder tfixed">
<colgroup>
<col style="width: 30%;" />
</colgroup>
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_contact_details}</strong></td>
</tr>
{$website}
{$sendemail}
{$sendpm}
{$contact_fields['icq']}
{$contact_fields['aim']}
{$contact_fields['yahoo']}
{$contact_fields['skype']}
{$contact_fields['google']}
</table>
(2015-10-16, 12:13 PM)Darkrad Wrote: [ -> ]
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder tfixed">
<colgroup>
<col style="width: 30%;" />
</colgroup>
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_contact_details}</strong></td>
</tr>
{$website}
{$sendemail}
{$sendpm}
{$contact_fields['icq']}
{$contact_fields['aim']}
{$contact_fields['yahoo']}
{$contact_fields['skype']}
{$contact_fields['google']}
</table>

That template is fine. Can you include a link to your site?
Sent it, any idea whats the problem?