It depends on which template pack you are using.
For Legacy, it is this template file:
buddypress\bp-templates\bp-legacy\buddypress\members\register.php
Overload that template by copying it to a directory that you create in your child-theme:
buddypress\members\
and make your changes.
If you are using Nouveau, it is more difficult. This is the file:
buddypress\bp-templates\bp-nouveau\includes\functions.php
It is not a template file, so your choices are:
1. hack the file and redo the hack every time you update BP – not recommended
2. use a language translator
3. write a filter function
function kimo_change_nouveau_string( $array ) {
$array['request-details']['message'] = "This is your custom message";
return $array;
}
add_filter( 'bp_nouveau_feedback_messages', 'kimo_change_nouveau_string', 20, 1 );
Paste the function in your theme/functions.php or in bp-custom.php
Test to make sure it is working.
Then adjust the message to your liking.
Hi
I am no expert but been using Divi with BP for many years. Which theme are you using with the divi builder? What is the address of the site?
Peter
FINALLY.. got this sorted out.
Check the gist here: https://gist.github.com/kimwhite/1c38fab78081c27491651e6cbb86c58d
When installed it shows ALL members whether they have ever been active.
put the file in /yourCHILDtheme/buddypress/members/members-loop.php
and then in .css hide filter: #dir-filters {display: none;}
THANK YOU @kimwhite
@mbigler
– What have you done so far to resolve the issue? What theme are you using? Have you changed to a default theme to see if that resolves the issue? Have tried deactivating other plugins to see if there are conflicts preventing account deletion?
– Where is BuddyPress activated in your multisite, in the main site or in subsite/subdomain? Have you enabled MULTIBLOG or is it basic BP in multisite?
Help us help you by providing more info about your setup. https://buddypress.org/support/topic/when-asking-for-support-2/
@bpotter78 It seems like a theme-specific issue, you have also confirmed that it worked with the default theme.
Checkout with the theme support of VideoPro once.
So I did a theme conflict test, and low and behold, when I changed to TwentyTwenty theme the login worked.
But the thing is, the theme I’m using (VideoPro) was built specifically for BuddyPress use.
So I’m still stumped.
Hello,
I’ve searched everywhere the past 48 hours for a solution to this, but cannot find anything. Not even on the Youzer support!
I recently installed Youzer and set it up step-by-step.
The login and registration pages look and work fine, I can register and activate the account successfully.
But when I start from scratch and login from the login page, after clicking the Login button, the page just refreshes back to the login page, and not redirected to the Buddypress profile. In fact, the login doesn’t actually log into my account. It just refreshes back to the login page where I have to start again.
I’ve deactivated/reactivated all plugins etc, and I’ve double checked the login redirection settings both in the theme and Youzer. And cleared browser cache. But still nothing.
Any advice would be greatly appreciated, thanks.
Hey all, so I recently installed buddypress on a website I have, everything works great aside from the login widget. It is displaying the “password” field much larger than the username field, and it just looks awful.
This could be the theme im using, could be the plugin, im not sure but I was hoping someone would have a solution for me. It would be nice to have them the same size, password being small like username. however if making username large like password is the only solution that would be okay too.
Here is a screenshot to better help display my situation.
View post on imgur.com
So I contacted them and the theme’s support refer this problem to Buddypress. They claim that the problem is not caused by their theme. even the fact that when I disable their core plugin, I no longer have this issue.
If you have better wordpress installed that might be worth turning off whilst testing, that’s the only plugin I know with those initials. As it’s a premium theme it would be worth contacting them for support..
I’m using Dimita theme which I bought from WPbingo and when I disabled its core plugin, the problem was solved. bwp_ajax_filter, I have no idea how to find that and I don’t even know what to do when I fount it. xD
I guess I bought a cheap theme, apparently, they have a loading cover and my undersanding of its functionality are limited.
How can I find bwp_ajax_filter ? and what should I do with it. Maybe that could solve my problem without chaning my theme 🙁
Hi,
First of all, great plugin! It has everything.
unfortunately, I have problems when it comes to loading activity or groups etc.
So, for instance when I click on activity on my profile, a red cover, a sort of loading cover starts to appear, the activity page is loaded, I can its page and data but the red cover doesn’t disappear and I have no clue how I can fix this problem.
I hope someone can help me out here, I did some research, for instance I activated another theme “TwentyTwelve” the problem was still there. I tried to rechange postname in permalink but I don’t know much about it.
<https://homymade.ch/members/davud/groups/>
Hello, we have an educational site with groups and I need one user or role to be able to enter only one group. So that they could not join other groups. I am using the Buddypress Nouveau theme. How can I limit users? What are some ways to do this? Help me please.
@balanz It’s sad to learn that there’s no obvious support area for the envato paid theme. I’ve never bought anything from envato, so my best guess will be to search for “themeforest cinamatix” then on that theme’s page, you’ll find the “Comments” link on the right hand column of the theme page.
I hope that works out for you. Good luck.
Sorry for not listening to the rules! Here is a better version of my previous post –
I am using WordPress 5.3 and I am actually using a theme called BuddyBoss to implement Buddyboss but that shouldn’t matter for my question.
So I created a custom function where any time a user gets a tag, they automatically receive a private message. I would like to make these messages stand out a little from the other messages in a users inbox/thread by adding special styling. Would it be possible to put a border around this message? Below is the code I am using:
Thank you! Simmi
function send_message_to_student_113( $user_id, $tags_applied ) {
$tag_id = wp_fusion()->user->get_tag_id( ‘course tag 1.1.1’ );
if ( in_array( $tag_id, $tags_applied ) ) {
$args = array(
‘sender_id’ => 1,
‘thread_id’ => false,
‘recipients’ => $user_id,
‘subject’ => ‘Hello there’,
‘content’ => ‘You got a new tag! Congratulations. Please let me know if you need any help!’,
‘date_sent’ => bp_core_current_time()
);
$result = messages_new_message( $args );
}
}
add_action( ‘wpf_tags_applied’, ‘send_message_to_student_113’, 10, 2 );
Hi @mercime
Thank you very much for getting back to me. And yes I will follow your advice, However, I have been on the Envato premium theme’s forums site and looked for a link on there to message them on this matter but could not find anywhere on that site toomessage them. Could you maybe help me with a link to do just that? otherwise, I have no idea where to find that.
Thank you again for your help so far.
Balanz
>>does BuddyPress or 3rd parties design additional plugins as such that can be successfully attached to this theme
Hi @balanz,
The best place to ask is at the premium theme’s forums as we do not have access to the paid theme. Based on what you need, looks more like you need to code a custom plugin that is compatible with both BuddyPress and your premium theme, or hire a developer to do so.
I think BuddyPress just uses the standard WP login page so https://codex.wordpress.org/Customizing_the_Login_Form has info on customising or even replacing the page.
On one of my sites I created a completely new page following this guide, https://themetrust.com/build-custom-wordpress-login-page/
It should be simple enough to create a custom page that disables the login button unless the checkbox is selected.
Also can you advise good themes for community/ group chat websites?
I hope I can optimize better for my website theme. Unfortunately, I am not good at technology. I did search a lot of information on the Internet and heard about BSS Theme. This company is so professional which provides magento theme with a variety of templates such as: magento modern theme, magento theme marketplace, . I plan to install magento athlete theme for my website. However, I do not know it’s well or not. So, I need advice from experts in this field. Thank you so much!
Hi guys I actually got a question that needs answering me to get to my next step.
I am planning to buy the premium Cinematix theme from themeforest to built a social media platform but would like to know if I would be able to link one or more radio stations to it and a by admin controllable sound list that can be listened to (while chatting) if the chatters chose to.
and a by admin controllable video screen. first I want to know if this is possible with this theme. and if yes and these options are not already included in this package does BuddyPress or 3rd parties design additional plugins as such that can be successfully attached to this theme?
Please, somebody, help me with these answers and thank you all in advance.
Balanz
Hello, Buddypress has video/audio calling options for Members registering in? Also advice me good Buddypress themes for just groups, private messaging, paid membership.
I’ve already tried disabling all plugins, switching themes, locale, PHP version – no luck!
Fresh and clean install of WP (5.4), recent PHP (7.4.3) – after installing BP (5.1.2) new user registration newer completes – after filling all fields and clicking “Submit” nothing happens – email notification not sent, page not refreshed etc – everything stays still like no button was pressed.
This as also confirmed on ANY theme and language.
Site is located here: https://яцдютт.рф/