Hi,
Is it possible to show users full name instead of username in posts, profilepage etc.?
Best regards
Mike
Hi,
Is it possible to show users full name instead of username in posts, profilepage etc.?
Best regards
Mike
We don't have support for that in the core, only full name field in users details.
Could you share your reasoning for wanting that?
Allright, thanks for your quick reply.
Simply because of the fact that a username looks unprofessional. Especially in a business community where people know who each other is.
Why can't you use full names as usernames?
I would have to ask users to do that, which would lead to countless mistakes.
Well, you can change language strings from "Username" to "Full Name" and put a reminder to use a full name on registration page.
That will confuse users trying to put space or diacritics in their names ;)
Myself I'm coming from non-formal communities like gaming sites or github, where real name makes sense to have somewhere as community grows close-knit, but not everywhere.
However, argument bout moving username to main model makes sense for me, I'll think about it in one of future releases.
That will confuse users trying to put space or diacritics in their names ;)
Myself I'm coming from non-formal communities like gaming sites or github, where real name makes sense to have somewhere as community grows close-knit, but not everywhere.
However, argument bout moving username to main model makes sense for me, I'll think about it in one of future releases.
I see the point in non-formal communities. But where having your username shown instead of full name would be weird on Linkedin, I believe the same would be the case in more formal business-oriented communities.
But thanks, I hope you implement the option in future releases :-)
Best regards.
Hi again Rafalp,
Thinking about this, having usernames shown instead of full name isn't going to cut it for me. And even though FirstnameLastname is an option for usernames, it still doesn't look as nice, and there will be problems with users having the same name.
Could you please point me in the right direction as to where I would have to change the misago code, to be able to display full names instead of usernames?
Best regards
Mike
Could you please point me in the right direction as to where I would have to change the misago code, to be able to display full names instead of usernames?
You are now venturing into the "I want to maintain my own Misago fork" territory because you want change the way that usernames are displayed. You will need to edit django templates and React.js components. You will also need to customize REST API to return full names. You will need to come up with fallback strategy for when you have username but no real name, how to handle mentions, private threads invites, etc. ect. That's a lot of stuff to do.
Personally, I am still thinking that you are being too dramatic about effects of non-real names being displayed. You've brought up LinkedIn as example previously, but Linked In very specific - its oriented on professional networking and recruitment, your site most likely isn't. Enterprise is using Jive and Lithium forum softwares that don't support what you are asking and yet they are chumming along wither employees using nicknames like "JasonG" without any harm to their business or image.
You might be right, and that seems like a bit too much work for first release. Anyways, thanks for your answer and pointing me in the right direction. I'll have to decide if it's worth the fork-process.
Best regards.
I would wonder instead if may not be more worth it go the way of Twitter or Discourse, and simply display posts as such if user has full name specified:
Thats exactly what i'm looking for. Just without the @rafalp. Did you just photoshop that, or is it an easy implementation?
EDIT: Ah I guess users need @rafalp to know how to tag. Though thats allright, I can do with that.
Sorry, I've used chrome dev tools to edit one of my posts. I could make user.real_name
bit available for use in posts and profiles templates real quick in Misago 0.18, though.
The proper option to "expose" real_name
fields will have to wait for after new frontend lands I am afraid.
Sorry, I've used chrome dev tools to edit one of my posts. I could make
user.real_name
bit available for use in posts and profiles templates real quick in Misago 0.18, though.The proper option to "expose"
real_name
fields will have to wait for after new frontend lands I am afraid.
I would appreciate that a lot, thanks.