Hi,
try to add your po/mo files into wp-content/laguages/plugins/buddypress-user-blog/…mo, where /buddypress-user-blog should be the exact plugin name and …mo should be the right file name (something like abcd-en_UK.mo)
Check the plugin doc for the correct directory name and the correct file name to use. As it is a premium plugin, it is not possible to give you more information for this as we have no access to the code.
You might also ask for this on the plugin support.
As site admin you can create new users and give same a low strength password. This is basic WP management. You already have a link for this part of the work.
If you have “hundreds” of friends to add it is of course a bit different – meaning it will not be done in 5mn. But it is not to me to tell you how to do this and where to find any knowledge document to achieve it. Codex are made for this – but sorry, i can’t sytematically lead any question asked on this forum to the appropriate page. My brain is not a codex summary ! Hope you understand. đ
You have to search on WP Codex and eventually on BP Codex. Essentially because of the phone number field, which is a custom field. You can do that with or without BP – and that’s why i said it’s not a BP question.
If you want to take the BP route, you might check the code from BP Default Data, to understand how this plugin insert fake content to BuddyPress.
Hello,
So I found a source on here, how to rename the menu bars in the profile section of buddypress.
I downloaded a plugin called Buddypress User Blog, and I want to rename the tab header “Blog” to “Posts” or “Articles”. I have downloaded the PO file that comes with this plugin and then made the translation from en_US to en_UK. and uploaded it to the server, under the BP-User-Blog/Languages folder, but still no changes.
How do I activate the new PO and MO file?
Or is there another way to change the wordings on the profile Tab?
Here is a screenshot of the tab:

Regards
Kelvin
Hi, Thank you for the reply. Why do you think it’s not related to buddypress? I have few hundreds of friends. Can I create password like 1234 also using the above method? It would be much helpful if you can give me links to those knowledge base.
Does the server has the minimum requirements to run WP and BP ?
What about the htaccess file ? When you moved the site directory, have you regenerate this file ?
About blank pages
Hi,
this question is not related to BuddyPress.
You have several options, from simple to overcomplicated.
1) If you have only a few friends to add, you can do that manually from dashboard. You need also a phone field in xprofile.
2) If you have hundreds, you need to write or generate a csv file and import them via phpmyadmin or any msql command line…
All this is explained on WP Codex.
Hi guys,
I have had this issue for months. First, Word Press was installed under its own directory -This is a Yahoo mandatory setup. Then I managed to install it on the root. But I still get blank pages or pages not found when I try to use one of the components. etc. : create group, New message, Notifications…
My permalinks are set to other than default.
Thanks in advance for your help!
Sorry for the outdated trick.
bp_is_profile_edit is deprecated in favor of bp_is_user_profile_edit.
Check for the outdated fn in the plugin mentionned in the error msg.
In case of, here a tutorial with more options.
@hnla
Hi there, I installed the Members Display module and it works great for simple data types where user names are not too long or when the imformation within each member box is the same length, however on a live site there are often differences in the data held for each member, which means the members grids wil have different heights, in which case the grid falls apart and what started out as an ideal solution quickly turns into a mess.

I realise this happens with all grid view snippets that I have tried, not just yours, but I wondered if you could think of anyway of preventing this break up of the grid view from happening? I was thinking if only you could set a default size for each grid that was big enough to hold all variations of the data then that might do?
Dear brother,
According to below guide. Suppose the page will change to “Profile”. But I failed.
Change Default Members Profile Landing Tab
Another brother can help?
Wordpress : 4.6.1âzh_TW
Hey guys!
@kida18 thanks for your hint đ i will remember the next time!
@hnla thanks for your response. Uff, this sounds really complicated for me, im not a really good coder! đ So i think, i’ll wait for your update.
What i want: i need different name colours of the profiles. For exemple admins red, subscriber black, fitnesscenters green. (for this is can give the fitnesscenters another user role for exemple editor)
The name colour should be everywhere, in the profile, in the member list, in the activity list, everywhere. (Much better whould be, if you just can give the users different colours in the user list in the dashboard, and i dont have to give them different user roles.) This would be very usefull and easy to handle, i think this feature would also be interesting fot other buddypress users here.
Look at my screenshots, will this be enable in your update 2.8?


Thanks guys
@planetoffitness
If you inspect the generated markup you will see that the loop list elements will have a members type class rendered if user has a type you can then use those to effect styling on.
In the member single screens it’s a little trickier you do have the ability to use the template hierarchy to set a template for a user type (please refer to the codex for instruction) otherwise for the moment you would need to modify the home.php template to add this yourself something like:
<?php $user_type = bp_get_member_type( bp_displayed_user_id() ); ?>
<div id="buddypress" class="<?php echo esc_attr( $user_type ); ?>">
First line is an addition the second you need to modify the existing element to add the class and php – all in a child copy of the home.php template naturally.
We will update buddpress core to add a class to the body elements for 2.8 as this would be useful and styling could be effected on that too so if you would rather wait for 2.8…
Unfortunally I didn’t find any solution. The issue is not reported to buddypress (I’ve tried but it was a bit complicated).
Hey there,
I’m no expert, just a buddypress user like you, but you should precise what you want to change and where, for people to understand and help you.
What element should have a different color? And where? On the members directory? In profiles?everywhere? etc
Good luck
Any one help me, i want to use both BuddyPress and OptimizePress any one can suggest me both are compatible with BOSS BuddyPress theme or not?
Reported problems
Extended Profiles – Field visibility option missing from registration form.
Confirmed and being fixed for BP 2.7.1: #7298
—
Extended Profiles – “years” missing from “Date Selector” field type.
Workaround: edit the field, and reselect the “absolute” range option, customising the date range as required (default is from 1956 to 2026 for most servers).
Confirmed and being fixed for BP 2.7.1: #7300
—
Backwards incompatible function signature change for groups_get_group
Confirmed and being fixed for BP 2.7.1: #7302
—
Changes to loading deprecated code causing fatal errors.
For certain very old themes, and for sites that use the Sites component.
Confirmed and being fixed for BP 2.7.1: #7307
I remember looking at Mailgun before when someone asked about it. Looking at its code very quickly, it has an option to send via its API or not. You’ll need to disable its “useAPI” option (otherwise, it redeclares the wp_mail function, which will force BuddyPress to send plain-text only emails). Another consequence of doing this is that Mailgun configures PHPMailer to send via SMTP, and some web hosts/servers block external SMTP requests.
If that has no affect, I think you’re going to have to do debugging inside the bp_send_email function. Specifically, I’d start looking at the return value of this line: $status = $delivery->bp_email( $email );
With luck, PHPMailer will give you an error message with some clues in.
> I have fixed the error I was getting of email_missing by adding information into the taxonomy tables manually. There is no documentation about this which is odd.
I don’t think it’s explicitly documented outside of the PHP – but it is hard to find, at the best of time – but this guide https://codex.buddypress.org/emails/custom-emails/ does mention it uses a custom taxonomy, so I wouldn’t call it “undocumented”. “Very badly documented”, maybe đ
Assuming everything is working as it is, I don’t know why it would show more users than you have, either. Have you tried going to Tools > BuddyPress, and running “Repair total members count” as a workaround for now?
i want to use both BuddyPress and OptimizePress any one can suggest me both are compatible with BOSS BuddyPress theme or not?
When a new user registers they can sign out and then sign back in using their login details.
If they then change their password, they get an email acknowledging but when they try and login, that password does not work (and neither does the old one). I have tried logging them in with user name and email, but get same result. I have tried changing their password myself, but same thing happens.
I am using buddypress inside wplms.
Can anyone help?
My site is http://www.mashauri.org
My theme is wplms 4.6.1
Buddypress version 2.7.0
I mean: is it enough to create a file bp.custom.php and upload it in the right folder? or do I have in some way “say to buddypress that there is that file”? It’s enough to create it (because I don’t have that file) and upload it?
Or is there maybe a way to sync the members of a Buddypress Group with for example the plugin “Groups”? So the group admin is able to change user role in this group in the backend?