Hi,
This is not the platform to look for developers. This forum is only to have help with BuddyPress related issues.
Thanks
Greetings!
I’m using Buddypress 3.2.0 in KLEO Theme on WordPress 4.9.8.
I have an issue that appears every time when someone tries to register on my website: after completing the registration fields and hitting “Sign Up” button, the page refreshes and the process isn’t done properly.
Sometimes the process is working: I can create an account but after that the issue appears again. It is like a 1/10 chance for the process to be done succesfully.
I searched on the forum’s topics related to this question but I couldn’t find something to work and solve the problem for me.
*I’m running a single-site.
*My bp file in directory is named: “BuddyPress”
Any ideas? I really hope you can help me!
Cheers!
Hi,
Please replace the previous code with this code if you want a tab and not the previous one:
function ps_profile_forum_creation() {
if(current_user_can('moderate')){
global $bp;
bp_core_new_subnav_item( array(
'name' => 'Create Forum',
'slug' => 'create-forum',
'screen_function' => 'ps_create_forum_screen',
'position' => 200,
'parent_url' => bp_loggedin_user_domain() . '/forums/',
'parent_slug' => 'forums',
'default_subnav_slug' => 'create-forum'
) );
}
}
add_action( 'bp_setup_nav', 'ps_profile_forum_creation' );
function ps_create_forum_screen() {
add_action( 'bp_template_content', 'ps_create_forum_screen_content' );
bp_core_load_template( 'buddypress/members/single/plugins' );
}
function ps_create_forum_screen_content() {
echo do_shortcode('[bbp-forum-form]');
}
Hopefully, it will help you.
Thanks
Thanks Parshant, finally something is worked. Above code works and shows under Topics Started tab.

Is there any way to show Forum Form as tab like Topic started and other tabs?
Please do not spam these forums.
That includes posting the same topic in multiple forums.
Your duplicate topics have been deleted.
afaik, Bp Group Documents uses a custom table – not a custom post type.
So search integration will require filtering the WP search SQL.
And that is beyond the scope of these forums – therefore this thread will be closed.
You can contact the plugin creator thru their support forum.
You can find info on the web re filtering WP searches.
Or perhaps you could hire a developer.
Hi,
Please try with the legacy template pack and in terms of version if it is not compatible with the latest version then please request in plugin’s support forum to make it compatible. Try any version of BuddyPress less than 3.0 to check the compatibility.
Thanks
Ok, got it now.
The above code will show the forum form on bbpress user profile, not BuddyPress.
Please try this code:
add_action('bbp_template_after_user_topics_created', 'ps_show_forum_form');
function ps_show_forum_form(){
if(bbp_is_user_home() && current_user_can('moderate')){
echo do_shortcode('[bbp-forum-form]');
}
}
Thanks
Thank you. The problem is not in my understanding.
Because the professionals (creators of the theme) tell that the problem in buddypress core.
Mobile view. Small avatar size in cropping. Not correct button.
You should contact the creator of that plugin.
Or ask your question on their support forum.
Each group has tabs for “Home” “Forum” “Members” etc.
I want to rename the “Home” for all groups to “Activity” instead of “Home”
I assume this is to be done via functions.php
Can someone perhaps give me some idea as to what I would need to put in the functions.php file to rename this?
I’ve tried this:
/**Function to change the group tab from home to activity **/
function group_default_tab() {
global $bp;
$bp->bp_options_nav[$bp->groups->current_group->slug]['Home']['name'] = 'Activity';
}
add_action('bp_groups_setup_nav', 'group_default_tab');
Hi,
Please use this code:
add_action('bbp_template_after_user_details', 'ps_show_forum_form');
function ps_show_forum_form(){
if(bbp_is_user_home() && current_user_can('moderate')){
echo do_shortcode('[bbp-forum-form]');
}
}
It will echo a form on the profile itself.
Thanks
Hi,
I used “current_user_can” function, but Forum form is not displaying for moderators.
I replaced current_user_can(‘moderate’) to bb_current_user_can(‘moderate’), but nothing works and gives error on my forum page


I’m trying to create an entirely custom buddypress member profile page.
Have worked out the template overrides for the header and main body (front.php, member-header.php) but can’t work out how to override the member primary navigation menu.
I know I can get rid of individual items with
bp_core_remove_nav_item( 'forums' );
but what I want to do is get rid of the entire menu as it’s not required.
Anyone know how to do this?
Thanks!
In particular,I’d like to distinguish between organizations and individuals.
The organizations apply to build communities, and organizations can post blogs in established communities to answer questions, free and paid features.
The data discussed by members can be saved and can be provided to scientific institutions for analysis.
Hi,
BuddyPress have member type features that you can use to distinguish between members. Please check this plugin https://buddydev.com/plugins/buddypress-member-types-pro/ and then can restrict group creation and blogs by member type organization.
Also use this plugin https://wordpress.org/plugins/bbpress/ for forum creation where members can come and reply on topics.
The topics and replies and activity post in buddypress are stored in the database.
Please check all of them and then can choose a BuddyPress based theme https://colorlib.com/wp/best-buddypress-wordpress-themes/ and it will have most of things inbuilt.
Thanks
Please consult your theme developers. Try to ask in their support forum to fix this issue. It’s your theme’s issue re-installation will not fix it.
Thanks
Hi,
Thank you for your message
Basically I would like to
– display a list of members (students or teachers) leading to profile details (education, etc) on click
– set up a forum with various categories
– display the member’s courses (as a student or as a teacher) on his own profile page
What would be the best add-on in your view ? BP for Learndash or BP for WC ?
Thanks in advance
Eric
I need to check the theme code, have you tried asking in their support forum https://seventhqueen.com/support/ ?
Pasting your login details on such public forum is never suggested.
You should post on the bbPress forums:
https://bbpress.org/forums
bbPress handles the forum aspect of your site. It looks like Turkish should be supported based on the community’s translation efforts:
https://translate.wordpress.org/projects/wp-plugins/bbpress
so, @shanebp forgive me if resurrecting this thread is a bad idea, but it has the information in it that i have a question on, and i figured it’s easier to use this one to talk about my issue rather than create a new thread and link back here.
i looked at the bp-custom.php file you linked to for this issue and i’m unsure where i can find the correct code to use with it….because i am actually not trying to merely hide members from the directory, but am instead trying to hide them from the directory and ALL other users on the site. i want to make it so that the user profiles basically are unreachable…along with each user’s information.
so i believe (not sure, but i believe) that to achieve this is i would need to make sure the profiles are handled in one of the following ways:
– password protected from view, accessible only to admins/keymaster
– never loaded at all somehow, via bp-custom.php
– the template for user profiles is blanked out somehow, so information is never put in them
– get the buddypress profile for users — when clicking on an avatar — just redirect to the main site page
of course, i have no idea if these guesses are the way to achieve the goal i really want….which is to have only one profile used (i’m using woocommerce’s account screen for their profiles)……i have no need for a buddypress profile to be used in addition to the woocommerce account profile page that i have them already using.
i honestly just want each user’s personal profile page in buddypress to be disabled. so they can’t see their own profile or any profile of others.
whether that involves forwarding users to the site main page when they click on a user, or (ideally) not being clickable at all, or….oh, i don’t know. as long as no buddypress profile is viewable by any member in any way. not even by the buddypress user themselves.
and yes — this would also include hiding member names from search.
note: i don’t care if they can see the member list in the hidden group forums; that is the only place i care to see members listed. but i don’t want those member avatars to be clickable in a hidden group forum. not ever.
thoughts????