What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » General » Forum & Website » Useless info in Profiles.

Useless info in Profiles.
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. Undecided  Useless info in Profiles.
[Image: attachment.php?pid=384536]


As you see in my screenshot I don't have any contact information. Now for some reason they are links saying that I don't have the specific information available. I don't get why they are actually links? It doesn't make sense to me. What I was thinking was if the user doesn't have any of that information in the profile then hide the specific row and only show ones that have data for them.

.gif File Attachment: useless.gif (7.71 KB)
This file has been downloaded 385 time(s).

This post was edited on 02-18-2005 at 08:25 AM by matty.
02-18-2005 08:25 AM
Profile E-Mail PM Find Quote Report
John Anderton
Elite Member
*****

Avatar

Posts: 3908
Reputation: 80
37 / Male / Flag
Joined: Nov 2004
Status: Away
RE: Useless info in Profiles.
I noticed that too a long time ago but i thought that it'll be difficult to code :S. Whats the difference if it is there ? Do u find it annoying. Also having all the categories in all the profiles give it kinda look which is similar for everyone.
[

KarunAB.com
]

[img]http://gamercards.exophase.com/459422.png[
/img]
02-18-2005 08:29 AM
Profile E-Mail PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. RE: Useless info in Profiles.
Well if all the rows are going to stay then atleast there shoudn't be any links saying that the contact does not have yahoo messenger. Its pretty useless. I find it annoying simply because if you have no information technically it shouldn't be a linkl
02-18-2005 08:38 AM
Profile E-Mail PM Find Quote Report
Chestah
Veteran Member
*****

Avatar

Posts: 1658
Reputation: 34
35 / Male / –
Joined: Jun 2004
RE: Useless info in Profiles.
It seems like a lot of coding for little benefit in my opinon :P
Segosa is newb.
02-18-2005 08:39 AM
Profile E-Mail PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: Useless info in Profiles.
Not really tbh: depends on how the MySQL queries are structured, and how the PHP deals with the results. You could have something like this:
code:
if ($queryResult == null)
    put "None";
else
    put "<a ...>"..."</a>";

No, I don't know PHP, OK?
[Image: spartaafk.png]
02-18-2005 09:22 AM
Profile PM Web Find Quote Report
saralk
Veteran Member
*****

Avatar

Posts: 2598
Reputation: 38
35 / Male / Flag
Joined: Feb 2003
RE: Useless info in Profiles.
well if there is already code that prints "none" then instead of making it say none with  a link, it shouldn't be too hard to change it.
The Artist Formerly Known As saralk
London · New York · Paris
Est. 1989
02-18-2005 10:44 AM
Profile PM Find Quote Report
surfichris
Former Admin
*****

Avatar

Posts: 2365
Reputation: 81
Joined: Mar 2002
RE: Useless info in Profiles.
It is to keep the layout uniformed and clean.

Also, if you intended to not display each item depending on the users profile then you'd end up with a lot of new templates and template calls to show or not show the information.

The way it works are the templates use the variables $memprofile[]. $memprofile['icq'] etc. These are pulled straight from the database. To allow easier customisation and everything the link is built in to the templates and when a user doesn't have an ICQ number the following is applied:
code:
if(!$memprofile['icq'])
{
  $memprofile['icq'] = "None";
}


Why? Because its simple and allows more customisation.

"Picky, picky, picky". I don't really see how it is an issue.

This post was edited on 02-18-2005 at 10:47 AM by surfichris.
02-18-2005 10:47 AM
Profile PM Find Quote Report
Eljay
Elite Member
*****

Avatar
:O

Posts: 2949
Reputation: 77
– / Male / –
Joined: May 2004
RE: Useless info in Profiles.
it isnt exactly hard to code

code:
if($user['msn'] != "") {
  echo "<the row stuff>";
}
 
02-18-2005 10:50 AM
Profile PM Find Quote Report
John Anderton
Elite Member
*****

Avatar

Posts: 3908
Reputation: 80
37 / Male / Flag
Joined: Nov 2004
Status: Away
RE: Useless info in Profiles.
I had seen it a long time and it looks like a javascript. Wait i need to check something.
Yup its a javascript allowing u to add that person directly without much effort. I just read what chris said and i cant see what the prob is as i have said earlier.
It says none doesnt it :S

This post was edited on 02-18-2005 at 11:02 AM by John Anderton.
[

KarunAB.com
]

[img]http://gamercards.exophase.com/459422.png[
/img]
02-18-2005 10:50 AM
Profile E-Mail PM Web Find Quote Report
surfichris
Former Admin
*****

Avatar

Posts: 2365
Reputation: 81
Joined: Mar 2002
RE: Useless info in Profiles.
quote:
Originally posted by Lee Jeffery
it isnt exactly hard to code

    code:if($user['msn'] != "") {
      echo "<the row stuff>";
    }
You're taking away the functionality of the template system and customisation there.

quote:
Originally posted by John Anderton
I had seen it a long time and it looks like a javascript.
It opens a javascript popup window with each account's specifics.

Like I said, why are we being so picky over something so small like this?

I also said it is to keep the layout uniform and nicely spaced out.
02-18-2005 10:57 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On