Log in

View Full Version : instant messages


UltraFanatics
03-27-2008, 07:29 PM
Does anybody know where I can turn them off?

Videx
03-28-2008, 12:46 AM
vbulletin options>private messaging options

UltraFanatics
03-28-2008, 11:59 AM
This isn't for the msn messenger / yahoo etc though is it?

snakes1100
03-28-2008, 12:04 PM
To not display them?

admincp --> vboptions --> style & lang settings --> show messaging icons -- on/off

nexialys
03-28-2008, 12:05 PM
AdminCP >> vbulletin options >> Style & Language Settings >> Show Instant Messaging Program Icons

UltraFanatics
03-28-2008, 12:28 PM
Cheers guys, nice one

Been looking for ages and couldn't find it even though I knew I had seen it loads of times before!!

tinkerbell
03-28-2008, 06:30 PM
The icons still appear in the members profiles and they can still add the IM id's to their profile. It took me ages and ages to work this one out but the only way to get rid of them is to edit the template and actually take them out.

If you want to know which template it is let me know and I will check mine to see.

Tinks

snakes1100
03-28-2008, 06:49 PM
postbit/postbit_legacy

tinkerbell
03-28-2008, 07:22 PM
To remove it as a profile option you need to go to:

admin cp>styles and templates>style manager>edit templates>modify user option templates>modify profile

This is what I ended up removing from the template:

<fieldset class="fieldset">
<legend>$vbphrase[instant_messaging]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td colspan="2">$vbphrase[may_enter_identity_for_im]</td>
</tr>
<tr>
<td>$vbphrase[icq_number]<br />
<img src="$stylevar[imgdir_misc]/im_icq.gif" alt="" />
<input type="text" class="bginput" name="icq" value="$bbuserinfo[icq]" size="25" maxlength="30" dir="ltr" /></td>
<td>$vbphrase[aim_screen_name]<br />
<img src="$stylevar[imgdir_misc]/im_aim.gif" alt="" />
<input type="text" class="bginput" name="aim" value="$bbuserinfo[aim]" size="25" maxlength="30" dir="ltr" /></td>
</tr>
<tr>
<td>$vbphrase[msn_messenger_handle]<br />
<img src="$stylevar[imgdir_misc]/im_msn.gif" alt="" />
<input type="text" class="bginput" name="msn" value="$bbuserinfo[msn]" size="25" maxlength="50" dir="ltr" /></td>
<td>$vbphrase[yahoo_messenger_handle]<br />
<img src="$stylevar[imgdir_misc]/im_yahoo.gif" alt="" />
<input type="text" class="bginput" name="yahoo" value="$bbuserinfo[yahoo]" size="25" maxlength="30" dir="ltr" /></td>
</tr>
<tr>
<td>$vbphrase[skype_name]<br />
<img src="$stylevar[imgdir_misc]/im_skype.gif" alt="" />
<input type="text" class="bginput" name="skype" value="$bbuserinfo[skype]" size="25" maxlength="32" dir="ltr" /></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>


Removing this means the option doesnt appear in posts or their profiles or anywhere else in forum because the option isnt in a members profile for them to fill in.

Tinks:)