Welcome, Guest. Please Login or Register.
August 29, 2025, 09:59:05 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  English User Help  |  English Help  |  Changing the "name" in profile?? « previous next »
Pages: [1] Reply Ignore Print
Author Topic: Changing the "name" in profile??  (Read 364 times)
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Changing the "name" in profile??
« on: March 27, 2003, 12:33:52 PM »
Reply with quote

I have tried to search for this but with "name" and "profile" I get so many returns I couldn't start to find it.
Here's my problem.

A member wants to change his "Name" (the one that people will see), but the box is not viewable in modify/profile (the text is?).
Logging in as admin and viewing his profile, the boxes are there?

I cannot find anything that disables the member from changing his name in my admin section.

Can anyone help please??
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
Angel Skin
Full Member
***
Posts: 128


I'm a llama!

WWW
Re:Changing the "name" in profile??
« Reply #1 on: March 27, 2003, 01:07:30 PM »
Reply with quote

Umm, I think in config there is a box that needs ticking allowing members to change display name.
Logged
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:Changing the "name" in profile??
« Reply #2 on: March 27, 2003, 07:16:54 PM »
Reply with quote

I have been through the whole admin section looking for it, but cannot find it?
Would you please look on your board and tell me the run to get to it eg; admin/forum config/forum pref & settings/etc

That would be a great help as it would show if my admin or profile page is wrong.
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:Changing the "name" in profile??
« Reply #3 on: March 27, 2003, 08:02:19 PM »
Reply with quote

I don't believe there is such an option....

Do understand that they can't change their membername - only their displayed name.

Have any mods installed?  Ie. the supermod?

-[Unknown]
Logged
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:Changing the "name" in profile??
« Reply #4 on: March 27, 2003, 08:51:08 PM »
Reply with quote

I dont have that mod installed, just the ones written in my signature below (i keep it up to date)

I did find some stuff in Profile.php which was this
Quote// create the custom title field if allowed
   $userTitleField = '';
   if ($modSettings['titlesEnable'] == 1)
   {
         if ($settings[7] == 'Administrator' || $settings[7] == 'Global Moderator')
            $userTitleField = '
               <tr>
                  <td width="45%"><font size="2"><b>' . $txt['title1'] . ': </b></font></td>
                  <td><input type="text" name="usertitle" size="30" value="' . $memsettings['usertitle'] . '" /></td>
               </tr>';
         else
            $userTitleField = '
               <tr>
                  <td width="45%"><font size="2"><b>' . $txt['title1'] . ': </b></font></td>
                  <td>' . $memsettings['usertitle'] . '</td>
               </tr>';
so i changed it to this:
Quote// create the custom title field if allowed
   $userTitleField = '';
   if ($modSettings['titlesEnable'] == 1)
   {
         if ($settings[7] == 'Administrator' || $settings[7] == 'Global Moderator')
            $userTitleField = '
               <tr>
                  <td width="45%"><font size="2"><b>' . $txt['title1'] . ': </b></font></td>
                  <td><input type="text" name="usertitle" size="30" value="' . $memsettings['usertitle'] . '" /></td>
               </tr>';
         else
            $userTitleField = '
               <tr>
                  <td width="45%"><font size="2"><b>' . $txt['title1'] . ': </b></font></td>
                  <td><input type="text" name="usertitle" size="30" value="' . $memsettings['usertitle'] . '" /></td>
               </tr>';
In other words just copying the script for the Moderator.
I realise that this is for the custom title, but the box for that was not there before.
Also, in my English.lng file I have referneces to "Enable Custom Title" that doesn't show in my admin.php.
maybe I have a mod 1/2 installed??
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:Changing the "name" in profile??
« Reply #5 on: March 27, 2003, 09:04:06 PM »
Reply with quote

Looking at that list....

You do realize that the purpose of the "Name mod" is to make it so your users cannot change their names.... right?

The user title is purposefully only for Administrators and Global Moderators.

-[Unknown]
Logged
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:Changing the "name" in profile??
« Reply #6 on: March 27, 2003, 09:13:45 PM »
Reply with quote

Yes, You are right [Unknown].
I don't thin k I want them changing their names whenever they feel like it.
But I do want them to be able to add some sort of title if they want.

I think I need to remove the text part of the profile, that shows them their name.

Thanks again for you help.
P.S. any chance of writing a "Boardlinks" mod PLEASE!!
http://www.yabbse.org/community/index.php?board=141;action=display;threadid=20426

(Begs and Pleads)
« Last Edit: March 27, 2003, 09:14:10 PM by GWP » Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:Changing the "name" in profile??
« Reply #7 on: March 27, 2003, 10:36:53 PM »
Reply with quote

i thought the boardlinks thing is done already
if u want to write a lot about a board, why not put it in the description, u can put html/ubbc code in board description
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:Changing the "name" in profile??
« Reply #8 on: March 28, 2003, 08:09:02 AM »
Reply with quote

The problem with my version of boardlinks spaceman is that I have to keep changing the code manually, and so far I have managed to mess it up 90% of the time!

The SP1.1 version was managed through the admin section and worked like adding more smillies, where you could simply tell it what board, the name of the link and the title to display.

I can see me in a few weeks time (when I have forgotten where/how to do it), really struggling to add a new one.

I did one and it keeps saying to me "Error expecting ";" in line 193, char 11 of file.php. Looking at line 193, i see it is just something like

Quoteline 192: </div>
line 193: </body>
line 194: </html>

It drives me up the wall!!
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
Angel Skin
Full Member
***
Posts: 128


I'm a llama!

WWW
Re:Changing the "name" in profile??
« Reply #9 on: March 28, 2003, 01:12:59 PM »
Reply with quote

Quote from: GWP on March 27, 2003, 07:16:54 PM
I have been through the whole admin section looking for it, but cannot find it?
Would you please look on your board and tell me the run to get to it eg; admin/forum config/forum pref & settings/etc

That would be a great help as it would show if my admin or profile page is wrong.

My apologies, I'm thinking of phpbb.
Logged
king_killa
Full Member
***
Posts: 132


king killa big wheela cat peela

WWW
Re:Changing the "name" in profile??
« Reply #10 on: March 29, 2003, 02:32:04 AM »
Reply with quote

you don't want them to change there name, but a title?
custom title solution: HERE
Logged

Pages: [1] Reply Ignore Print 
YaBB SE Community  |  English User Help  |  English Help  |  Changing the "name" in profile?? « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.034 seconds with 17 queries.