Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
3 registered (cascadeclimbers, Kelvin, Peter), 35 Guests and 16 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 05/13/08
Posts: 596
Top Posters (30 Days)
Ruben 49
DennyP 24
Gizmo 23
Dunny 17
SteveS 14
AllenAyres 12
dbremer 10
drkknght00 9
SD 9
driv 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Topic Options
#172077 - 01/01/07 09:40 PM Instant Messenger
sdp Offline
stranger
Registered: 01/01/07
Posts: 22
The website I help Administer was recently updated to 7.1 beta 3 from 6.1.1

A new feature/field is for members to list their IM (AIM, Yahoo, MSN, etc) names... Since our site has many underage members, the list presents the opportunity for unsavory online people to easily contact kids outside the forums..

Is there a way to turn off this feature in the profiles?

Thanks.
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#172080 - 01/01/07 10:32 PM Re: Instant Messenger [Re: sdp]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
In the registration options section you can set the field to hidden and they wouldn't be able to enter information on registration...

As for disabling it completely, I think you'd either have to modify the editbasic.tmpl or showprofile.tmpl file and remove the lines for the chat services.
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
#172090 - 01/02/07 12:48 AM Re: Instant Messenger [Re: Gizmo]
sdp Offline
stranger
Registered: 01/01/07
Posts: 22
 Originally Posted By: Gizmo
As for disabling it completely, I think you'd either have to modify the editbasic.tmpl or showprofile.tmpl file and remove the lines for the chat services.


The only one I noticed, that can be hidden, is the ICQ entry during registration, but as you know it can be changed once they log in and change their profile.

Editing the above mentioned files is something I can't access nor do I think the owner would want to mess with. What do you think.. there are so many options with this new version.. couldn't/shouldn't it be easily hidden (as an option) via the Control Panel? Just a suggestion.
Top
#172092 - 01/02/07 12:56 AM Re: Instant Messenger [Re: sdp]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
I'm not sure how to say it without sounding mean lol... Basically, options are added on a majority, if it's in, it's in for all; and most things don't have options to turn them off if they can be easily edited out (by removing several lines in the showprofile.tmpl file).

If you link your admin to this, all he has to do is edit the showprofile.tpl file, and remove the following:
 Code:
<tr>
<td valign="top">
{$lang.PROF_ICQ}:
</td>
<td valign="top">&nbsp;
{$icq}
</td>
</tr>
<tr>
<td valign="top">
{$lang.PROF_YAHOO}:
</td>
<td valign="top">&nbsp;
{$yahoo}
</td>
</tr>
<tr>
<td valign="top">
{$lang.PROF_MSN}:
</td>
<td valign="top">&nbsp;
{$msn}
</td>
</tr>
<tr>
<td valign="top">
{$lang.PROF_AIM}:
</td>
<td valign="top">&nbsp;
{$aim}
</td>
</tr>


he may also consider removing the homepage, email, and fakeemail optons as they could lead to also divulging user information:
For EMail and HomePage:
 Code:
<tr>
<td valign="top">
{$lang.VIA_EMAIL}:
</td>
<td valign="top">&nbsp;
<a href="mailto:{$Fakeemail}">{$Fakeemail}</a>
</td>
</tr>
<tr>
<td valign="top">
{$lang.TEXT_HOME}:
</td>
<td valign="top">&nbsp;
{$Homepage}
</td>
</tr>
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
#172095 - 01/02/07 01:27 AM Re: Instant Messenger [Re: Gizmo]
sdp Offline
stranger
Registered: 01/01/07
Posts: 22
No it's cool.. you're not mean.

I suppose if editing the files is so easy, there is no need for entra code for it to be an option to hide.

Thanks for the response. I'll pass this info on to the owner and see if he is interested in making the change.
Top
#172097 - 01/02/07 01:48 AM Re: Instant Messenger [Re: sdp]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
The templating system was made to make things easy to edit, either through the web based editor in the control panel (which requires files to be chmodded 666) or through another text editor on the file directly.

Once you get used to where things are, it becomes quite easy to tweak.
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
#172239 - 01/03/07 09:09 PM Re: Instant Messenger [Re: Gizmo]
sdp Offline
stranger
Registered: 01/01/07
Posts: 22
OK I didn't realize there was a section to edit the .tpl files.

So now that I know I can get to the .tpl files, do I have to close the forum when I make the edit or can I do it on the fly?
Top
#172243 - 01/03/07 09:17 PM Re: Instant Messenger [Re: sdp]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
 Originally Posted By: sdp
OK I didn't realize there was a section to edit the .tpl files.

So now that I know I can get to the .tpl files, do I have to close the forum when I make the edit or can I do it on the fly?
I live dangerously and edit the files live; always have lol...

i think though that editing any files you should close your forum, and the UBB.C route of doing things is always clear your cache after making updates to template files.
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Ability to "like" individual posts (not Facebook "likes)
by doug
05/23/12 09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
New Posts Corrupted? Can someone help?
by PianoWorld
05/19/12 09:41 AM
Custom forum permissions
by ntdoc
05/18/12 02:07 PM
Forum Stats
10489 Members
36 Forums
33841 Topics
181696 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image