-
Henry Wright replied to the topic FAQ Plugin for BuddyPress in the forum Third Party Plugins 8 years, 8 months ago
Try searching the Plugin Directory to see what’s available. I haven’t seen one myself. Sorry I can’t be more help 🙁
-
Henry Wright replied to the topic Storing/Syncing with WP User meta in the forum Creating & Extending 8 years, 8 months ago
@ala7lam if you go to Settings > BuddyPress you should see a check box next to Extended Profiles. If you uncheck that, the xProfile component becomes disabled. Then you can add your own custom solution (using WordPress usermeta if you wish).
-
Henry Wright replied to the topic How to auto populate location in user profile in the forum How-to & Troubleshooting 8 years, 8 months ago
You could add the field to the “Base” group and then it’ll display on the registration form.
-
Henry Wright replied to the topic IMPORT / EXPORT BUDDYPRESS DATA in the forum How-to & Troubleshooting 8 years, 8 months ago
I think the question will be how far away from a REST API are we?
-
Henry Wright replied to the topic Storing/Syncing with WP User meta in the forum Creating & Extending 8 years, 8 months ago
This would involve a big rewrite to the xProfile component. It wouldn’t be an easy task and I’d actually recommend against doing it. Instead, perhaps you could disable the component and roll your own usermeta-based solution to user profiles?
-
Henry Wright replied to the topic IMPORT / EXPORT BUDDYPRESS DATA in the forum How-to & Troubleshooting 8 years, 8 months ago
Does anyone know of any Open file formats for data export
Do you mean stuff like?
CSV
SQL
JSON
YAML
XML
HTML -
Henry Wright replied to the topic IMPORT / EXPORT BUDDYPRESS DATA in the forum How-to & Troubleshooting 8 years, 8 months ago
I looked at Trac but can only find where to file a bug report, not a feature request.
Sorry about that, I should have mentioned there’s no formal way to submit a feature request. If you begin the ticket title “Feature request:” that should be fine 🙂
-
Henry Wright replied to the topic IMPORT / EXPORT BUDDYPRESS DATA in the forum How-to & Troubleshooting 8 years, 8 months ago
An export import facility would be great to have. Keep in mind this won’t guarantee it will get done, but I suggest you open a feature request on Trac (as always try searching existing tickets first to make sure one doesn’t already exist).
-
Henry Wright replied to the topic Ajax in messages component in the forum How-to & Troubleshooting 8 years, 8 months ago
Ajax doesn’t require much code, but PHP and JavaScript skills are needed. The best place to start is probably here.
-
Henry Wright replied to the topic Activity Stream Search Term Filtering in the forum How-to & Troubleshooting 8 years, 8 months ago
I think you’ll need to use AJAX for this. Listen for the option list change in your JavaScript file, and then pass the relevant data to the server for processing.
-
Henry Wright replied to the topic Where is "Delete my account" option? in the forum How-to & Troubleshooting 8 years, 8 months ago
The account delete option can be enabled by going to Settings > BuddyPress > Options > Main Settings > Account Deletion.
-
Henry Wright replied to the topic Change background color of .activity-header? in the forum How-to & Troubleshooting 8 years, 8 months ago
Try
.activity-header {
background-color: #000;
}Maybe the #buddypress ID isn’t on the page?
-
Henry Wright replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 8 years, 8 months ago
I see! In that case, try asking over at Peepso too, perhaps one of their users has used BP at some point. I guess that’s the problem with paid products, there’s no way to test against your own set-up before purchase. I’d imagine if you contacted Peepso direct they _may_ be able to think of something to help.
-
Henry Wright replied to the topic PHP Warning: Illegal string offset 'content' bp-members-template.php in the forum How-to & Troubleshooting 8 years, 8 months ago
Which plugins do you have active and which theme are you using?
-
Henry Wright replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 8 years, 8 months ago
I doubt they would work well together but you could try it on a test install and let us know how you got on?
-
Henry Wright replied to the topic How to Exclude already friends in all members directory ? in the forum How-to & Troubleshooting 8 years, 8 months ago
Try using
bp_is_directory()
. So:add_filter( 'bp_after_has_members_parse_args', 'devb_custom_hide_friends' );
function devb_custom_hide_friends( $args ) {
if ( ! bp_is_directory() ) {
return $args;
}
// Rest of your code. -
Henry Wright replied to the topic Disable Activity streams, keep mentions for BBPress in the forum Creating & Extending 8 years, 8 months ago
@-mentions require the activity stream component and as far as I know there’s no way around that.
-
Henry Wright replied to the topic Show "Total Posts" instead of "Topics" and "Replies" in the forum How-to & Troubleshooting 8 years, 8 months ago
Hey @fenixbazaar
Give the guys a shout over at bbPress. They handle forum-related questions.
-
Henry Wright replied to the topic Unable to Set BP Pages in the forum How-to & Troubleshooting 8 years, 8 months ago
This may be a silly question but have you created those pages under Pages > Add New?
-
Henry Wright replied to the topic Profile is Forcing avatar upload in the forum Installing BuddyPress 8 years, 8 months ago
Please upload your profile photo to start using this site.
It’s likely you have a plugin activated that’s causing this message.
- Load More
@henrywright
Active 8 months, 1 week ago