Thank you for bringing up the issue you’re facing with profile image uploads on the forum. I understand the frustration that comes with encountering difficulties after updating to the latest version of BP. It appears that the update might have introduced a bug or compatibility issue. To assist you, I suggest trying the following steps: Firstly, clear your browser cache and cookies to eliminate any potential interference from cached data. Secondly, temporarily disable any plugins or browser add-ons that may interact with the image upload process. This will help identify any conflicts causing the upload problem. Additionally, ensure that your image dimensions are set to 150 x 150 pixels in Photoshop before uploading, as you mentioned this workaround has been successful for you. By following these steps, you should be able to overcome the profile image upload issue. If the problem persists, I recommend reaching out to the forum’s support team for further assistance. Best of luck in resolving this matter, and please don’t hesitate to ask if you have any further questions.
I just finished building wordpress Cirkle buddypress website.
Being brand new, I am wondering how to get people to sign up.
The site is a FAQ about TV Sets -mainly answering questions on mounting and setups.
Do I wait it gains traction with Google Search.
Please help.
How did you get members/people to sign up?
@ingenxcomputers I am seriously stressing because my site is constantly being violated by Russian bots after this latest update and you are splurting out nonsensical questions … Seriously?
The plugin I mentioned is very well documented. I suggest that in the future you do a bit of homework first before jumping in without offering any advice or solutions
If you’re looking to add a background image and personalize the ‘Sign Up’ page further, you can use custom CSS. Here’s a simple example to get you started:
css
Copy code
#signup-form {
background-image: url(‘your-image.jpg’);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 24px;
}
Replace ‘your-image.jpg’ with the URL of the image you’d like to use. You can customize the padding, background size, position, and other properties to suit your preferences.
To implement this:
Access your platform’s customization or theme settings.
Look for an option to add custom CSS.
Paste the provided code snippet.
Save your changes.
This should apply the background image to the ‘Sign Up’ page as per your specifications. If you have any questions or need further assistance, feel free to reach out.
Anonymous UserInactive
Hi @priyam1234
Can you test the following code to see if that’s enough for ACF to load its fields UI?
function priyam1234_generate_post_type_ui( $args = array() ) {
$args['show_ui'] = current_user_can( 'manage_options' );
return $args;
}
add_filter( 'register_buddypress_post_type_args', 'priyam1234_generate_post_type_ui' );
About your questions on BP URL functions, you can read this developer documentation resource which includes some examples of use for most of the described functions:
https://github.com/buddypress/buddypress/blob/master/docs/developer/functions/rewrites.md
The Codex mentions here that there is a page in Settings > Email but I don’t see it.
So I have 2 questions : by default, does sending a notice as an admin to all users triggers a mail to be sent?
And if so where do I configure/disable it? With 40000 users I’d like to be able to notify users but not send a load of email spam.
I’m a beginner at WP. I am trying to develop a listing directory with a social network integrated. I’m building the listings directory with the MyListings theme on main domain and want to develop the Social network with BuddyPress (maybe BuddyPress + Youzify) on a subdomain.
My idea is to have a platform where users can publish their listings on Mylistings and have their profile and interact with other members on BuddyPress.
My questions are:
How do I link each author on MyListing website to their BuddyPress profile?
How can I link each profile (BuddyPress) to the author on MyListings theme?
Thank you.
opps ] Let me provide you with an alternative approach that disables the activity form for users, making it more secure. You can achieve this by disabling the form functionality entirely. Here how you can modify the code to accomplish thi
php
Copy code
function disable_activity_form_for_non_admins() {
if ( ! current_user_can( ‘administrator’ ) ) {
remove_action( ‘init’, ‘function_that_creates_activity_form’ );
}
}
add_action( ‘init’, ‘disable_activity_form_for_non_admins’ );
In this code snippet, replace ‘function_that_creates_activity_form’ with the actual function name or hook that creates the activity form. This modification disables the activity form functionality for non-administrative users by removing the action that creates the form during the init hook.
This way the form wont be available in the HTML markup, making it more secure compared to just hiding it with CSS. Remember to place this code in your theme’s functions.php file or in a custom plugin file.
Again make sure to back up your site before making any changes, and test the modified code in a safe environment first to ensure it works as expected. If you encounter any issues or have further questions, feel free to ask!
Old post, but I think the behavior you see is WP-driven. The reason I say that is that I have disabled the REST API for WordPress and the link above (e.g. /wp-json/buddypress/v1/members/3) or similar do not retrieve any data.
I used guidance from this SO article.
https://stackoverflow.com/questions/41191655/safely-disable-wp-rest-api
WordPress : 6.3.1
BuddyPress : 11.3.1
Youzify : 3.3.9
Dear users,
Since +/- 1 month the ‘Load More’ option on the activity page doesn’t work. On mobile (iOS and Android) nothing happens, and on Google Chrome first nothing happens and then a browser error occurs “The page doesn’t reply, would you like to wait or close”.
The “Load More” on other pages (user activity, etc.) works.
Using a lots of plugin which makes it hard for me with my knowledge to understand where it comes from. A new wordpress + buddypress + standard wp theme works fine.
My questions are:
– Is it possible to have pagination on the activity wall stream page but keep the other pages as they are for the timebeing?
– How can I debug where the error comes from?
Regards
@awol, regarding your bbPress tangent — my experience is that neither the BP forum (this one) nor the bbP support forum work the way BP and bbP do “out of the box.” Perhaps it has something to do with the theme, or perhaps they’re customized. But if you want to see how they’re going to work together your you, I’d suggest setting up a test site and installing them with your theme. Also robin-w on the bbpress forum has a plug-in that allows for a lot of customization and is pretty good about answering these kind of questions.
Hi again @imath,
This is a separate query from before, and is really a question about what the new BP will change, if anything, with regard to the methods of adding activities. The reason I ask is that I have been trying to do the following on the latest version of the ‘old’ BP; at present I have certain posts being created automatically when users click/tap or hold certain buttons, via a form plugin; some of these are custom post types, but some are regular posts. I have had no problem with the custom post types in terms of adding them to either the main Activity stream, or individual Group Activity streams (both or just one), but cannot get regular posts to go anywhere other than the main Activity stream (and the Profile Activity of the user), and what I want is to be able to post them to either both main and group, or to just group (Profile Activity is not an issue). If there are no changes coming that impact this, I will need to create another custom post type to deal with this, but obviously I would rather avoid that if I can as it would entail quite a lot of extra coding/changes to existing code, so if there are any further details on existing or planned changes in this area it would be great if there is some link to them, or if you have any information you can share. I haven’t yet got all the relevant code for my existing site set up on my test site for beta BP, which I will do if you can confirm that there are changes in the beta that will allow me to achieve my aims.
Also, what are the plans for the Legacy theme? Should I plan to move to Nouveau? Or will a new BP theme become available that will work alongside my WP child theme? I am using Nouveau in my test site but I am struggling to achieve certain things that I can do with Legacy on my existing setup. But I am not particularly happy with either of them because of the amount of css edits I need to make, particularly with relation to things like buttons, inputs, tabs etc.
I appreciate all the work that has been and is being put in, so please don’t take my comments and questions as criticism, I’m just trying to avoid unnecessary work!
Hello,
It seems like you’re working on a multi-author website and you’re looking for a way to control access to user profiles. Specifically, you’ve implemented code to deny access to administrators’ profiles, and you’re interested in extending this functionality to subscribers as well.
To achieve this, you can modify the code you provided to include conditions for subscribers. Here’s an example of how you might achieve this:
php
Copy code
// deny access to admins and subscribers profiles. Users are redirected to the homepage
function bpfr_hide_admins_and_subs_profile() {
global $bp;
// Get the current user’s role
$current_user = wp_get_current_user();
$user_roles = $current_user->roles;
// Check if the user is an admin or a subscriber
if (bp_is_profile && $bp->loggedin_user->id != 1 &&
(in_array(‘administrator’, $user_roles) || in_array(‘subscriber’, $user_roles))) :
wp_redirect(home_url());
exit;
endif;
}
add_action(‘wp’, ‘bpfr_hide_admins_and_subs_profile’, 1);
This code snippet checks if the currently displayed user’s role is either “administrator” or “subscriber,” and if the conditions are met, it redirects the user to the homepage.
Remember to replace ‘administrator’ and ‘subscriber’ with the actual role names used in your WordPress setup.
Thank you for reaching out, and a special shoutout to “TWITCHFOLLOWERFORGE“. If you have any further questions or need additional assistance, feel free to ask!
I want to add a functionality that takes users’ answers from all the questions that they fill out using a custom form. Then automatically match them up with other users that came up with the same answers.
So when a user creates their profile then clicks on the search page it will first generate 5 – 10 users that have the same thing in common based off of the answers they have provided in their profile. If the user wants to see more matches they will have to pay.
Can this be done?
Anonymous UserInactive
Hi everyone,
As explained into the following post, this forum topic is the place where you can ask us questions about the next BuddyPress 12.0.0 major release.
BP Classic 1.2.0
We’ll try to give you answers as soon as we can.
You can get latest 12.0.0 pre-version from there 👇
BuddyPress 12.0.0 Release Candidate
Hello,
I am just getting my toes into BuddyPress’ documentation, and came across the ‘popular’ user type in BP_User_Query.
I have no idea how ‘popular’ users are defined in BuddyPress. My questions are as follows:
1. How is the ‘popular’ user type defined and sorted in BuddyPress?
2. If ‘popular’ users are calculated across a period of time, could one theoretically sort users into ‘most popular by day, week, month, etc.’?
3. The documentation recommends bp_parse_args() for filtering members. What would a simple function to return popular users using bp_parse_args() look like?
Hi,
I hope you could help be to ofind out why my Buddy Press Emails are sent without customisations set. There are no header, no footer and full long links are to the webiste or profile.
Many thnanks for any advice.
I am not sure really what other info to put here so feel free to ask any questions.
What are the benefits of adding FAQs (Frequently Asked Questions) to the home page of a WordPress theme, and how can they improve the user experience?
Hello, I have the following questions. Does buddypress use the user roles of wordpress?
I would like to include a separate forum for individual events on my website, that relates only to the topic of the event. Is this possible?
No one ever answers questions raised here. It’s so annoying and frustrating.
Hi @clicksnlikes. I feel your pain. The thing is, this is a volunteer-led community, so everyone tries to help when they have some time available.
Registered Users and members are unable to use the create topic function on my site as somehow it’s only available for guests or non-registered members and admin.
Has this behavior you’re describing been like this from the start, or has it started to occur recently?
No one ever answers questions raised here. It’s so annoying and frustrating.
Registered Users and members are unable to use the create topic function on my site as somehow it’s only available for guests or non-registered members and admin.
I’ve been trying for an entire week and none of the topics here helps at all so i’m not sure you’d get any answer to your questions either.
Hi,
I got few questions.
We are talking about front-end. Not wp-admin.
1. If i promote a member to a moderator in one group, he can invite other members to that group.
2. Can he also delete them from the group? I don’t see such a option.
3. If i go to the wp-admin, promoted moderator, can add and delete members from any group !! why ?
He was assigned moderator only to a specific group.
Hi @josiejackson
A few basic questions:
- Did Editing Basic Profile Group work before, i.e. is this a new error message, or has this been like this from the start?
- Did you try switching to a different theme, to see if the error still shows up?
There’s a good template to follow here that helps the community helping you troubleshoot what the problem might be.
Hi,
Two questions:
1.
I’ve created two different types of members and assign to them different fields in the registration form, BUT I can only assign it manually after the initial registration is complete, which include only one of the two form versions. Is there a way for the user to choose a role and according to that, to move forward to a specific registration form (same form – different fields)?
2.
In the Profile Search, I mostly used Checkbox option, in order to allowed users to checkbox more than one option.
Is there a way to add Clear All option to the search? (which includes several different fields, each in is a Checkbox field)
Thanks, Ilanit
Hi everyone,
At the moment, when I need to look up a BP code related name (such as a function, a hook, etc.) I just google it.
I have seen that some documentation is distributed, meaning, it’s not all centralized here on buddypress.org.
For example, this site https://wbremedy.com/reference/functions/ seems to contain some (all?) of BP’s functions, hooks, etc. (I think this particular site has been put up by user vapvarun but his handle shows him as last active 6 months ago).
I was recently given me access to the staging site and I started performing minor updates to some of the documents, but I have some questions, for example
- were some of these external websites created by current BP members/admins, or are they independently run?
- is there a rationale to what docs are stored here, Vs. docs stored in these external websites?
- if I wanted to start updating more docs in the staging site, is there a process to follow?
Thanks