-
Boone Gorges replied to the topic Customize inbox template in the forum Creating & Extending 6 years, 11 months ago
Hi @datenfresser – You can customize the template by overriding the template file in your child theme. Copy the file
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php
towp-content/themes/[your-theme]/buddypress/members/single/messages/messages-loop.php
, and make your modifications to the new…[Read more] -
Boone Gorges replied to the topic [Fixed] I can't create groups page keeps reloading in the forum Installing BuddyPress 6 years, 11 months ago
Ah, interesting.
1. If you’ve got access (through the mysql command line tool, or through PHPMyAdmin, check the character set and collation https://makandracards.com/makandra/2531-show-the-character-set-and-the-collation-of-your-mysql-tables There may be something funny going on there.
2. Do you have the same problem with other content? Can you…[Read more]
-
Boone Gorges replied to the topic User profile field to log their height or weight growth – Possible? in the forum Creating & Extending 6 years, 11 months ago
It’s not possible to use a regular BP profile field to keep track of data changes over time. BP doesn’t keep records of old profile field values – it only stores the most recent one.
There are a number of ways you could accomplish it. If you had the technical know-how, you could build a tool that hooks into XProfile and syncs user-entered data to…[Read more]
-
Boone Gorges replied to the topic registration in nav menu when logged in in the forum How-to & Troubleshooting 6 years, 11 months ago
Be sure you’re looking at the
View All
tab. -
Boone Gorges replied to the topic Activity Stream Time is off (posted an update in 5 hours) in the forum Installing BuddyPress 6 years, 11 months ago
Some things to check:
1. Check the timestamps at Dashboard > Activity. Are they off as well?
2. Are in timezone UTC-5 (US Eastern)? Just so we have a better understanding of what’s going on.
3. You say the “server time” is “set correctly”. Can you say more about what this means?
4. Are timestamps for WP content (like posts and comments)…[Read more]
-
Boone Gorges replied to the topic Users based on location in the forum Creating & Extending 6 years, 11 months ago
You can pass user IDs into
bp_has_members()
like this:
$custom_ids = my_custom_ids( 'country', 'usa' );
$has_members_args = array(
'include' => $custom_ids,
);
if ( bp_has_members() ) {
...
}
-
Boone Gorges replied to the topic [Fixed] Groups Messages Disappear After Update in the forum How-to & Troubleshooting 6 years, 11 months ago
@grimbot – When you swapped out the header.php file for the original, did it fix the AJAX problem you’ve described here? It’s likely that it’s unrelated, but worth checking.
> Perhaps something with the .httaccess files?
Unlikely – mods to the .htaccess file might prevent the call from going through in the first place. This AJAX call is…[Read more]
-
Boone Gorges replied to the topic Register page editor in the forum How-to & Troubleshooting 6 years, 11 months ago
BuddyPress’s Register page is a special kind of page that cannot be edited via the Dashboard. That’s why it’s blank when you view it in the normal way.
To add additional fields to the registration process, go to Dashboard > Users > Profile Fields. Add one for Address and one for Phone Number. Make them required and/or private, if you’d like. As…[Read more]
-
Boone Gorges replied to the topic User Profile Field Descriptions Showing Twice in the forum How-to & Troubleshooting 6 years, 11 months ago
Can you share a screenshot? (Upload to https://postimg.org/ and share the URL to the screenshot.) Seeing how the fields are rendered may give a hint as to why this is happening.
It may also be worth switching to the Twenty Sixteen theme momentarily (or some other WP default theme) to see if it solves the problem. If so, you can narrow it down to…[Read more]
-
Boone Gorges replied to the topic Problem with "Please upload your profile photo to start using this site." in the forum How-to & Troubleshooting 6 years, 11 months ago
If you’re able, search your codebase for the string. It *must* be there somewhere. If you have SSH access:
$ grep -nR "Please upload your profile photo to start using this site" wp-content/plugins
Repeat for
mu-plugins
andthemes
. -
Boone Gorges replied to the topic registration in nav menu when logged in in the forum How-to & Troubleshooting 6 years, 11 months ago
When you add BuddyPress’s Register item to your nav menu, it will only show up for logged-out users. If you’d like it to show for *all* users, remove the BuddyPress item, and instead find Register under Pages and add it from there. https://i.imgur.com/Ny7Wj1L.png
-
Boone Gorges replied to the topic How NOT to redirect users after login. in the forum How-to & Troubleshooting 6 years, 11 months ago
My suggestion was to try another plugin. That’s a relatively low-risk proposal 🙂
For the record, I understand the frustration – piecing together many different plugins and tools, written by many different people, can sometimes have unpredictable results.
-
Boone Gorges replied to the topic [Fixed] I can't create groups page keeps reloading in the forum Installing BuddyPress 6 years, 11 months ago
Very odd. It sounds like, when you initially installed BP (or activated the Groups component), it didn’t properly install the database tables. I have not seen that happen before, but I’m glad that toggling the component resolved it.
-
Boone Gorges replied to the topic Email confirmations WordPress 4.9 in the forum How-to & Troubleshooting 6 years, 11 months ago
The email-change verification is meant as a security measure. If your BP credentials are stolen or lost, the only way you can get them back is with a Lost Password reset; the verification step means that an attacker can’t lock you out by changing your password and your password reset email.
On sites that I manage, users do occasionally lose…[Read more]
-
Boone Gorges replied to the topic How NOT to redirect users after login. in the forum How-to & Troubleshooting 6 years, 11 months ago
You could try using a different plugin for switching the login page. https://wordpress.org/plugins/search/login+page/ The one I’ve seen in use before is Theme My Login. Maybe it will work better with your setup.
-
Boone Gorges replied to the topic Appearance of a profile page in BuddyPress in the forum Installing BuddyPress 6 years, 11 months ago
Hi @thelovebridges –
BP doesn’t have any built-in tools for modifying the appearance of the page from the Dashboard.
This leaves you with two options:
1. Use custom CSS. You can probably accomplish much of what you want this way.
2. Override BP’s templates in your child theme. Only do this if you need to change markup.If you can give more of…[Read more]
-
Boone Gorges replied to the topic Groups Update Form in the forum Miscellaneous 6 years, 11 months ago
This would take some custom coding. I don’t have any examples of how it could work for BP activity items. But I wrote something similar for bbPress replies a couple years ago, which might serve as an inspiration: https://github.com/boonebgorges/bbpress-reply-titles
-
Boone Gorges replied to the topic Problem with "Please upload your profile photo to start using this site." in the forum How-to & Troubleshooting 6 years, 11 months ago
That string is not present in BuddyPress itself. It must be coming from the plugin described here: https://buddydev.com/buddypress/force-buddypress-users-to-upload-profile-photo/
Be sure to check for
wp-content/plugins/bp-force-profile-photo
in your filesystem, and the Plugins screen on both the Dashboard and the Network Admin (assuming you’re…[Read more] -
Boone Gorges replied to the topic [Fixed] Groups Messages Disappear After Update in the forum How-to & Troubleshooting 6 years, 11 months ago
I’ve logged in and reproduced the error.
One of two things is happening here.
1. The item is being posted, but cannot be loaded for some reason. Check Dashboard > Activity to see if the item is listed there; if so, then it falls into this category.
2. The item is not being posted.
When I click ‘Read More’, I’m seeing something like this in the…[Read more]
-
Boone Gorges replied to the topic BBP Groups Messages Disappear in the forum How-to & Troubleshooting 6 years, 11 months ago
I’ll close this one.
- Load More
@boonebgorges
Active 1 year, 3 months ago