Previous Thread
Next Thread
Print Thread
Hop To
#172077 01/01/2007 10:40 PM
Joined: Jan 2007
Posts: 22
S
sdp
Offline
stranger
stranger
S Offline
Joined: Jan 2007
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.

sdp #172080 01/01/2007 11:32 PM
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
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.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Gizmo #172090 01/02/2007 1:48 AM
Joined: Jan 2007
Posts: 22
S
sdp
Offline
stranger
stranger
S Offline
Joined: Jan 2007
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.

sdp #172092 01/02/2007 1:56 AM
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
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>


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Gizmo #172095 01/02/2007 2:27 AM
Joined: Jan 2007
Posts: 22
S
sdp
Offline
stranger
stranger
S Offline
Joined: Jan 2007
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.

sdp #172097 01/02/2007 2:48 AM
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
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.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Gizmo #172239 01/03/2007 10:09 PM
Joined: Jan 2007
Posts: 22
S
sdp
Offline
stranger
stranger
S Offline
Joined: Jan 2007
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?

sdp #172243 01/03/2007 10:17 PM
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
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.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Version 7.7.5 Images suddenly not displaying
by Stovebolt - 05/04/2024 11:19 AM
Bots
by Outdoorking - 04/13/2024 5:08 PM
Do I need to rebuild my database?
by Baldeagle - 04/07/2024 2:58 AM
Who's Online Now
0 members (), 765 guests, and 175 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240506)