Search Results for 'mention display name instead of username'
-
Search Results
-
Topic: @mentions problem
I use WordPress 5.2.3
and BuddyPress 5.0.0.
Many have already asked to change @mentions from @username to @display_name but this is difficult and unfortunately I have not found an answer. Attempting to hide username is understandable for security reasons. However, I have another question. Can this problem be resolved without changing @mentions but the login method?
If instead of the username in the login field allow only login by e-mail and disable login by username without removing it from BuddyPress, the problem of hiding the @username will disappear. Is it possible to login only via email without deleting your username?
If so, the displayed name will become redundant and can be removed from the registration form.
How to do it and does it make sense?Hi!
I’ve been searching the web for something like this but couldn’t find anything that would help me.
I don’t have a website yet but I’m testing BP on another domain.
Am currently running WordPress 4.9.8 with the Fagri theme and the Buddypress version 3.2.0.I’d like to have an anonymous community, which means: I don’t want usernames to be shown anywhere. Instead, a different custom profile field such as “Animal” or “City” which users will be able to pick an option from, may be displayed. Or I wouldn’t mind if the user_id is displayed instead.
So I’ve thought of two options:
1) Add some kind of function which generates random usernames, or which allows to use the user_id as the username.
2) Replace every part of the templates where the username is shown and replace it with a code that would show the custom profile field (e.g. chosen “Animal”).The problem is my programming skills are zero. I’d be able to replace the codes within the templates but I have no clue how to generate such a code or function for either of the two options I’m mentioning.
Couldn’t find anything such precise online, so I hope someone can help me with this.
Btw: I did aim to remove the username from the URL with a function, so the user_id is currently being shown within the profile page URL.
Thank you so very much! π
Hello,
I want to replace the username in the member header with the (real) name. I tried to change in the cover-image-header.php this piece of code
bp_displayed_user_mentionname()but probably used the wrong code.
Would be great if someone has a solution πThanks
Topic: Username
Help please. I want that in header of user’s profile displayed Full name instead of Login. What I must write instead of <?php bp_displayed_user_mentionname(); ?> in member-header.php?
Topic: Name instead of username
Hi,
I want to display the name instead of the username in the user page. I know I need to replace bp_displayed_user_mentionname() in member-header.php. The problem is that I can’t find the function that will display the name.I have a unique problem, I think. I have a subscription member based site, and prior to my current system, the users were forced to use email addresses as their username. When I migrated to the new system, the email addresses-as-usernames were imported.
I’m trying to implement Buddypress but it wants to display their usernames, and a lot of my users don’t want their email address as public info.
Specifically, when posting to a group or replying, and also on their profile (the @mention name)
IS their a way to completely get rid of displaying the usernames, and instead display their nickname or displayname?
Hi,
I want to use wordpress username in every field of my site instead of buddypress’ “Name”. Β Is it possible to disable the whole name system and use Username instead or to hide Name from every possible field and display Username instead.
I’m totally newbie to this whole coding stuff, found a code and managed to hide “Name” field in profile edit but this is only preventing from changing it. I need to disable it or change it’s usage to Username. (in Activity feed, mentions & comments at least)
—
In case anybody wonders what did I use for hiding Name from profile edit section;
`add_filter(“xprofile_group_fields”,”bpdev_filter_profile_fields_by_usertype”,10,2);function bpdev_filter_profile_fields_by_usertype($fields,$group_id){
//only disable these fields on edit page
if(!bp_is_profile_edit())
return $fields;
//please change it with the name of fields you don’t want to allow editing
$field_to_remove=array(“Name”,””);
$count=count($fields);
$flds=array();
for($i=0;$iname,$field_to_remove))
unset($fields[$i]);
else
$flds[]=$fields[$i];//doh, I did not remember a way to reset the index, so creating a new array
}
return $flds;`
Added this code to bp-members-functions.phpOn the Activity Page, I can see two tabs; one for All Members and one for @Username Mentions. Is it possible to change the Username to Nickname or Display Name?
The rest of the application shows nickname/display name everywhere else, except for that tab.
Edit – I can see my Username when I am looking at a group if I am the owner of the group.
I guess it may be easy but I didn’t find a solution: how may I display username instead display name on group forums?
It would make easier to users mention each other.
Thanks!
hi,
it seems that the @mention is very confusing to many user, especially because users are seeing the names and not the usernames of other people.
There are extensions whch gve the possibility to display only the username instead of the name globally, but that is annoying because many users do not want to use their usernames as displayed names.
Is there a possibility to make the @mention work for the displayed names (which can be changed by users) instead or in addition?thanks and best regards
romanTopic: New to buddypress
When I’m on the activity page (http://mysite.net/activity) or any page that has “activity”.
The filters like the following just change all the activity to be blank, instead of “filtering” it.
* All Members (391)
* My Friends (1)
* My Groups (2)
* @testuser Mentions
The dropdown filter box does not work either. Just changes all the activity to blank. Everything else in the buddypress works fine.
Just a question, on the black drop down menu at the very top. How would I change it so when they user click on Activity it goes to the global activity page instead of there own activity page. Groups to, when they click groups it goes to there own groups page instead of the global groups page.
For example:
http://test.mysite.net/groups/ – this
http://test.mysite.net/members/username/groups/ – not this
http://test.mysite.net/activity/ – this
http://test.mysite.net/members/username/activity/ – not this
Sorry make any sense? lol
1. Which version of WP/MU are you running? 2.9.1 Single WP
2. Did you install WP/MU as a directory or subdomain install? http://www.mysite.com
3. If a directory install, is it in root or in a subdirectory? root
4. Did you upgraded from a previous version of WP/MU? If so, from which version? No
5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
6. Which version of BP are you running? Version 1.2.1
7. Did you upgraded from a previous version of BP? If so, from which version? No
8. Do you have any plugins other than BuddyPress installed and activated? Yes
9. Are you using the standard BuddyPress themes or customized themes? Using BuddyPress Template Pack
10. Have you modified the core files in any way? Yes, to fix the avatar upload issue:
bp-core-avatars.php line 389
Replace:
if ( !$path = get_option( ‘upload_path’ ) )
$path = WP_CONTENT_DIR . ‘/uploads’;
With:
if ( !$path = get_option( ‘upload_path’ ) )
$path = WP_CONTENT_DIR . ‘/uploads’;
else
$path = ABSPATH . $path;
…and report back?
http://trac.buddypress.org/ticket/1970
11. Do you have any custom functions in bp-custom.php? No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not using bbPress.
13. Please provide a list of any errors in your server’s log files. – Nope, shared server.
14. Which company provides your hosting? Hostgator
