By Antonio ferrara on Thursday, 03 November 2016
Replies 4
Likes 0
Views 590
Votes 0
Hello there.

I would like to know how to invert First name and name I thisnk is just a question to locate the result of mysql in php code and change the order ... when all users are showed in the list.

es. Tosi Franco
result. Franco Tosi

Best Regards
Antonio
The template file responsible to output the user's name is located at /components/com_easysocial/themes/wireframe/users/default/items.php and you could play around with the result.

Example:

[gist]
<?php

var_dump($user->getFieldData('JOOMLA_FULLNAME'));

?>
[/gist]

The keyword JOOMLA_FULLNAME is taken from http://take.ms/5OhWJ
·
Thursday, 03 November 2016 22:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Unfortunately I don't have that directory as maybe is version 2

I have the following.

see attachment.

Best Regards
Antonio
·
Friday, 04 November 2016 03:43
·
0 Likes
·
0 Votes
·
0 Comments
·
I simply would like to invert wieving the first name with last name in the following attachment (list of all user).

as far as I undestood the 2 field become one field,

The original mistake was made on registration while fist name as first field and last name as registration, So the results of the single field will be with last name.

I corrected now to sho and register first name in both and I think I will have to invert manually the field the few user has been registred in order to uniform the future registreant user,

Do you agree with my analisys .. correct the registration and swap the fist name with Last name manually?

Best Regards
·
Friday, 04 November 2016 16:08
·
0 Likes
·
0 Votes
·
0 Comments
·
If you are on 1.4, you need to look into this template file, /components/com_easysocial/themes/wireframe/users/default.list.php

Your algorithm in swapping names by space is not correct because if a person's first name has 2 words, there is no way to properly know which is the real / last name .

For instance, "Di filippo Flaminia", which is his first and last name?
·
Friday, 04 November 2016 18:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post