Search Results for 'theme'
-
Search Results
-
Hi BuddyPress Community,
I’m using BuddyPress to create a community on my website, but I’m having trouble with user profile pages not displaying correctly. When members view their profile, the layout is broken, and certain elements (like the profile picture and activity feed) aren’t showing up as they should.
Here’s what I’ve tried so far:
Checked for conflicts with my WordPress theme (using a BuddyPress-compatible theme).
Disabled other plugins to see if they’re causing issues, but the problem persists.
Cleared the site cache and checked the site in multiple browsers, but no luck.
Could there be a setting in BuddyPress I’m missing, or does anyone have tips for troubleshooting profile page display issues? I’d appreciate any guidance on how to get these pages to look as intended!Thanks in advance!
Hi
I’m using BBPress with BuddyPress in a WordPress site with MicroOffice theme. We’ve notice recently that the BuddyPress Activity Feed is no longer updating when someone Favourites a Forum post inf BBPress. I’ve tried turning off all other plugins to no avail. I’ve also delted and reinstalled buddypress.
Also I’ve notice the BuddyPress RSS feed is not working, and when I go into the activity feed domain.com/activity (for example) it will say 9 favourites but when you click o it you only see two listed. Its also not increasing from 9 when I click on forum items favourite button.
Does anyone have any ideas please?
Topic: page template for buddypress
I’m using the latest wordpress default block theme. Where can I swap template for buddypress pages? Currently buddypress is using the default “pages” template for all buddypress related pages.
How to apply another page template to buddypress? There is no way to “edit page”.Hi,
I have a buddypress theme installed that allows to handle WPJM plugin for job and resume registrations. For this latter I need the users to register as candidate or employer to control who can view resumes or post jobs etc.
However the theme dont have this per standard but their support where very kind to give me a suggested custom code to handle this. I cant get this to work and wonder if someone knows what might be missing?
This is what they wrote me for this question:
Create a Profile Field for “Role”: Set options like “Employer” and “Candidate” for users to select during registration.
Use Code to Assign the Role: A code snippet can assign the correct role based on the user’s selection in this profile field.Please let us know if you’d like guidance on the custom code snippet to achieve this or if you’d prefer assistance from a developer.
Here is a code snippet you can use to assign a user role based on the value selected in a custom BuddyPress profile field during registration. This example assumes the profile field is named “Role” and has values such as “Employer” or “Candidate.”
function assign_role_based_on_profile_field($user_id) { // Get the BuddyPress profile data for the registered user if (function_exists('xprofile_get_field_data')) { $role_value = xprofile_get_field_data('Role', $user_id); // Replace 'Role' with the exact name of your profile field // Assign the user role based on the profile field value if ($role_value == 'Employer') { // Assign 'employer' role $user = new WP_User($user_id); $user->set_role('employer'); // Replace 'employer' with the exact role slug } elseif ($role_value == 'Candidate') { // Assign 'candidate' role $user = new WP_User($user_id); $user->set_role('candidate'); // Replace 'candidate' with the exact role slug } else { // Default role if no specific selection is made $user = new WP_User($user_id); $user->set_role('subscriber'); // Or any other default role } } } add_action('bp_core_signup_user', 'assign_role_based_on_profile_field', 10, 1);Make sure the roles employer and candidate are defined in your site.
I want to use the WPJM user roles as standard: employer and candidate. Not sure if the slug meant here is just ’employer’ and ‘candidate’ to be correct?
Best regards,
Flamuren
Hello everybody,
we need the buddypress members and single view to use a custom template.
But the Buddypress Content always tale te page.html template.I tried to make a cusotn template “buddypress.html” in the template folder, but the Members page makes no use of it.
Is there a way to adress a custom template-file in the twenty-twenst-four Theme?
Like the buddyvibes-trunk theme is doing it?Thank you a lot
We’re encountering a fatal error (which appears to have been a warning in php 7.4.33)
We are using the following:
WordPress version 6.6.2
Active theme: Astra Child (version 1.0.0)
Current plugin: BuddyPress (version 14.1.0)
PHP version 8.2.24Error Details
=============
An error of type E_ERROR was caused in line 942 of the file /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-tools.php. Error message: Uncaught Error: Undefined constant “BP_XPROFILE_BASE_GROUP_NAME” in /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-tools.php:942
Stack trace:
#0 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(324): bp_core_admin_debug_information(Array)
#1 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array)
#2 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/includes/class-wp-debug-data.php(1487): apply_filters(‘debug_informati…’, Array)
#3 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/site-health-info.php(36): WP_Debug_Data::debug_data()
#4 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/includes/class-wp-site-health.php(68): require_once(‘/home/customer/…’)
#5 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(324): WP_Site_Health->show_site_health_tab(‘debug’)
#6 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(”, Array)
#7 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
#8 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/site-health.php(220): do_action(‘site_health_tab…’, ‘debug’)
#9 {main}
thrownHello,
I need to override the invitations loop to change the tables to div.
I copied the invitations-loop.php file from buddypress > bp-templates > bp-nouveau > buddypress > members > single > invitaions
TO
child-theme > buddypress > members > single > invitationsIt does not work? Why? What did I made wrong?
Hello there,
My website is in French.
Here is the page where I have an issue : https://demo-avec.com/inscription/
As you can see, the label for the name field is half in english and half in french : Name (obligatoire)
I am trying to find a solution to solve that issue.
I want to display that text like this : Nom (obligatoire)
I tried to find it in Buddypress Po file, but I couldn’t.
I tried to change my theme, deactivate all plugins, empty my cache, upload Polylang plugin… Nothing works.
The worst is that all the other fields have been automatically translated, but not this one.
I’m getting mad with this issue, thanks for your help 😉
Hello Community –
Using Buddypress v.14.1.0 WordPress v. 6.6.2 with Multisite using Twenty Twenty Four theme and BP Nouveau:
Does anyone have a code snippet to address the following:
the search form box does not appear in Member Activity to the right of the RSS feed icon even though the search filter drop down appears.
Have tried multiple ways to 1. get search form to appear – but cannot get it to work.
If this has been addressed before in a topic, please reply with link.
Thanks!