vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Profile Enhancements - Publicly Displayed Name (https://vborg.vbsupport.ru/showthread.php?t=82462)

Mythotical 06-02-2005 10:00 PM

Publicly Displayed Name
 
Due to the pricing and yearly fee of vBulletin I am no longer creating mods for vBulletin, instead I have stepped out of the shadow of vBulletin to create my own stand alone mods. I wish to thank everyone who downloaded and installed my mods but as of now with not being able to afford hosting and vBulletin, I decided to drop vBulletin so hopes of me returning would only happen if my newest venture brings me a nice profit.

Thank you all again
Steve

Jolten 06-03-2005 11:09 PM

So this basically gives every user the ability to have an alias that's displayed but the username stays the same and can be viewed by everyone on their profile page?

What's the point? other than shear confusion.

bigcurt 06-03-2005 11:53 PM

lol calm down man. How can you not see a use in this? People can put there real name they want used instead of some nickname they came up with earlier..this is great mod.

Marco van Herwaarden 06-03-2005 11:56 PM

Nobody is forcing you to use this Jolten. If you have a board where this makes sense, use it. Otherwise leave it.

Jolten 06-04-2005 12:43 AM

I wasn't meaning to come down hard on this. I just don't see the point. Register with the name you wish to use.

jugo 06-04-2005 01:17 AM

I think it's a GREAT idea.

It provides a small amount of security....think about it....the hackers will have a hard time guesing the real username.

I think it's brilliant.

Jolten 06-04-2005 01:52 AM

Quote:

Originally Posted by jugo
the hackers will have a hard time guesing the real username.


not if it's displayed in the public profile.

Adrian Schneider 06-04-2005 02:37 AM

Make sure you change the field5 to your field#.

Corriewf 06-04-2005 02:52 AM

Quote:

Originally Posted by Jolten
So this basically gives every user the ability to have an alias that's displayed but the username stays the same and can be viewed by everyone on their profile page?

What's the point? other than shear confusion.


I was thinking this hack is cool for a second until I thought about the confusion it would cause with my members. Someone without an avatar could start posting under an alias and my less computer friendly members wouldnt think to check their profile to see who they are.....


What would make this hack much better would be to have the user name in quotes underneath the nickname chosen.

yoyoyoyo 06-04-2005 05:03 AM

Quote:

Originally Posted by corriewf
I was thinking this hack is cool for a second until I thought about the confusion it would cause with my members. Someone without an avatar could start posting under an alias and my less computer friendly members wouldnt think to check their profile to see who they are.....


What would make this hack much better would be to have the user name in quotes underneath the nickname chosen.

agreed

Jolten 06-04-2005 06:03 AM

Quote:

Originally Posted by corriewf
I was thinking this hack is cool for a second until I thought about the confusion it would cause with my members. Someone without an avatar could start posting under an alias and my less computer friendly members wouldnt think to check their profile to see who they are.....


What would make this hack much better would be to have the user name in quotes underneath the nickname chosen.


That's exactly the "confusion" I was referring to.

Qwest 06-04-2005 01:37 PM

LoL how on earth does this help anything?

OK we've shown you the obvious reasons why ths would simply cause confusion....

So at least tell us what or how SPECIFICALLY this benefits members.

All this does it take away admin control. Before an admin had to change your username. Now users can change it at will? This helps how?

Im sorry but the "if you have no use for it on your board dont use it" argument is a thoughtless copout! Explain your hack so it makes sense instead of telling people to just not use it. Doesn't that sound more like the mature thing to do?

Mythotical 06-05-2005 11:37 PM

Ok so far my reason has been said, its to make it harder for hackers to login to an account if they don't know the username thats why I always make it so guests can't view profiles but instead have to register then if they register, ip's are logged making it easier to find out who they are and which account they logged into. So a security feature is a good way of saying this is used for but I like other suggestions I got so me and my friend will get that taken care of. We will put either the username in quotes below the displayed name or make it so the username is not viewed in the profile but instead the profile.

BTW, this in no way allows the person to change their username, it only displays a different name instead of the username. Therefore admins would still have to change usernames.

I run RPG's so having a displayed name allows them to use the name to login that they use on every site without thinking of a new login then they just put in their character name in the displayed name field and no worries in that area.

Any other suggestions? I enjoy the suggestions thus far, if you have a special request for something like this then let me know, me and my friend will find away to make the hack then provide you with the hack.

Myth

King Kovifor 06-06-2005 03:08 PM

Quote:

Originally Posted by corriewf
I was thinking this hack is cool for a second until I thought about the confusion it would cause with my members. Someone without an avatar could start posting under an alias and my less computer friendly members wouldnt think to check their profile to see who they are.....


What would make this hack much better would be to have the user name in quotes underneath the nickname chosen.

Use this substitution:

Code:

<if condition="$show['profile']">
<if condition="$post['field5']">
<a class ="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[field5]</a>
</if><br />
"$post[musername]"
$post[onlinestatus]
<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
<else />
<if condition="$post['field5']">
$post[field5]
</if>
</if>

I don't have any screenshots of that though... But It works... This will be in an updated version being released soon.

Again Change [Field5] to your field #.

Corriewf 06-06-2005 05:49 PM

Looks awesome! Thanks for the update. Would be cool to be able to have a turn on turn off in admin control panel for those to use the original version and those to use this update.

Mythotical 06-06-2005 06:01 PM

Good idea Corrie, we will get on that right away.

Now what King Kovifor just posted is an alternative to what I had done. That will put it right below the Displayed Name but my code will put it above the title for that member. You can do either/or.

Myth

Corriewf 06-06-2005 08:13 PM

Quote:

Originally Posted by Mythotical
Good idea Corrie, we will get on that right away.

Now what King Kovifor just posted is an alternative to what I had done. That will put it right below the Displayed Name but my code will put it above the title for that member. You can do either/or.

Myth

So the options in the admin control panel could be:

Turn alias off
Turn alias on
Turn alias w/usernames on



Could be added to the vbulletin options section instead of creating its own section to conserve space.


I think this is a cool idea! :D

Mythotical 06-06-2005 11:31 PM

Ok I will get started on that. Just don't expect a new release anytime soon, gotta get it going then do extensive testing to make sure there are no bugs in the hack. Thanks again for the great suggestion.

King Kovifor 06-06-2005 11:51 PM

That's a great idea! That's something that Mythotical would have to edit... Mine would show up like this:

Public Name
"Registered Username"

OK You guys know how to add profile fields to the postbit right? Well if you go into the template add this and it should work as a postbit modification:

Option One:

Code:

First Name: $post[musername]
That should come out (as in the picture):

Original Username: Eternia

This is option two:

Code:

First Name: <a class ="smallusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
It'll be the same outcome but it'll turn out with the orginal username as a link to the profile like it originally would.

Screens Provided

King Kovifor 06-06-2005 11:58 PM

Download the attatched file for newest release (also in first post this was at vbtemplates.com)

Mythotical 06-07-2005 01:00 AM

That last code that King just posted, I suggest just naming what you want because if you have a user with an extremely long name then that would cause problems.

King Kovifor 06-07-2005 08:33 PM

They Work... Screenshots attached to previous post. The second option actually takes the username to the profile. No other options.

Quote:

Originally Posted by Mythotical
That last code that King just posted, I suggest just naming what you want because if you have a user with an extremely long name then that would cause problems.

Did a quick edit and changed it to a somewhat shorter quote: First Name

Mythotical 06-08-2005 02:32 AM

Quote:

Originally Posted by King Kovifor
They Work... Screenshots attached to previous post. The second option actually takes the username to the profile. No other options.



Did a quick edit and changed it to a somewhat shorter quote: First Name

Ok the admin on/off switchs are giving me problems but hopefully I will get them solved.

King Kovifor 06-10-2005 12:46 AM

*Updated Version was Added*

JimmiG 06-10-2005 12:50 AM

I like it. It's especially good for large communities of boards, so the admin doesn't have to screw around with usernames and mess people up(I've had people request for me to change their names, which is alright since my board is small, though the point stands that it can confuse people if you mess around with the registered username.)

Mythotical 06-10-2005 02:44 AM

Your right Jimmi, it can get confusing but that is why I am currently working on adding a few more features to help make it better such as the admin switches and even more.

I am currently porting 1.3 over to 3.5 so it should be done within a few mins.

Corriewf 06-10-2005 01:13 PM

PHP Code:

First Name: <class ="smallusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a

This is the best option as it wont impact portal pages.....


Thanks for taking me up on the suggestions as I think this hack is now 3 times better then it was and still using the same concept.


Thanks.

KW802 06-10-2005 06:07 PM

Mythotical, King Kovifor: Looking good guys. :)

Mythotical 06-10-2005 09:16 PM

Thanks KW, but soon the hack will be considered fully mine except for a small invert cuz King Kovifor can't do php coding like I can and this is starting to turn out to use alot of php coding.

Corriewf 06-11-2005 02:25 AM

Opps forgot to click install....Now done. Much props. :)

Mythotical 06-11-2005 02:59 AM

NP corrie, if you plan to run vb 3.5, I have ported this over to that version as well. So enjoy and I plan to convert a few 2.x.x hacks over to vb 3.5 over time. Badges Hackette is one of them I am porting over due to my use of it.

If you have any other suggestions, please email me or contact me over messenger. I would like to discuss your ideas even further that you may have about this hack.

Myth

King Kovifor 06-11-2005 03:38 PM

Quote:

Originally Posted by KW802
Mythotical, King Kovifor: Looking good guys. :)

Thanks Kevin!

Quote:

Originally Posted by Mythotical
Thanks KW, but soon the hack will be considered fully mine except for a small invert cuz King Kovifor can't do php coding like I can and this is starting to turn out to use alot of php coding.

That's true... I did the original code (the first release) and than we we adding features and things and than it went into PHP coding... Two things that I can't do:

Never tried PHP.
I can't I don't have the access.

Corriewf 06-12-2005 04:40 AM

I am sure if had to you wouldnt have a problem :)

Mythotical 06-12-2005 07:14 PM

I don't know, I offered him access to the files and he said no so I don't know about that Corrie.

King Kovifor 06-18-2005 08:45 PM

Quote:

Originally Posted by Mythotical
I don't know, I offered him access to the files and he said no so I don't know about that Corrie.

I said no for two reasons:

1. I've never done anything PHP but I'd learn in a safer enviroment: My own server where I could mess anything up and not piss anyone off.
2. I'm 13 and could do anything to the files which I wouldn't do to mythotical.

Corriewf 06-20-2005 12:22 PM

Quote:

Originally Posted by King Kovifor
I said no for two reasons:

1. I've never done anything PHP but I'd learn in a safer enviroment: My own server where I could mess anything up and not piss anyone off.
2. I'm 13 and could do anything to the files which I wouldn't do to mythotical.


Very smart for 13. ;)

Mythotical 08-22-2005 12:44 AM

Well this is going through a code update, it shall be updated in the coming months with new features and it will be renamed to Alias for VB 3.0.7

Cheers
Myth

yanivg 05-22-2006 06:27 AM

in the 3.5 version, I fully understand the advantage of this system.
will your hack work on 3.5 ?

here is my original post (that was not answered till this day..:surprised: )

https://vborg.vbsupport.ru/showthread.php?t=115134

thanks
Yaniv

peterska2 05-22-2006 07:37 PM

This mod does not work with 3.5.x. One that does the same thing for 3.5.x is Alias v2.1

Mythotical 05-27-2007 04:32 AM

This is no longer being supported. Please use Alias 2.1 found in Kerry-Anne's post.


All times are GMT. The time now is 03:27 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01448 seconds
  • Memory Usage 1,830KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete