MyBB Community Forums

Full Version: :angry: How disable contact info links ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wanted to have Gaming Information with steam,origin,psn,xbox In it 

So i replaced Contact Info with that . 


But there is one problem.

First see this pic : http://imgur.com/rMDD27b
Now see this pic : http://imgur.com/HpaQHmX

How to remove the popup kind of screen that appears. that you see in the pics
check code in member_profile_contact_fields_aim template (in Member Templates)
<td class="{$bgcolors['aim']}"><a href="javascript:;" onclick="MyBB.popupWindow('/misc.php?action=imcenter&amp;imtype=aim&amp;uid={$uid}&amp;modal=1'); return false;">{$memprofile['aim']}</a></td>

you may replace above code with
<td class="{$bgcolors['aim']}">{$memprofile['aim']}</td>
(2015-09-01, 02:06 PM).m. Wrote: [ -> ]check code in member_profile_contact_fields_aim template (in Member Templates)
<td class="{$bgcolors['aim']}"><a href="javascript:;" onclick="MyBB.popupWindow('/misc.php?action=imcenter&amp;imtype=aim&amp;uid={$uid}&amp;modal=1'); return false;">{$memprofile['aim']}</a></td>

you may replace above code with
<td class="{$bgcolors['aim']}">{$memprofile['aim']}</td>

Thanks a lot . This thread is now solved And Rep+'ed you !