-
Stacy (non coder) replied to the topic acknowledge post editor content above activity stream in the forum Creating & Extending 9 years, 9 months ago
Or shortcode the activity stream into a page and style it however you want. https://buddydev.com/plugins/bp-activity-shortcode/
-
Paul Wong-Gibbs replied to the topic Using WP ALL IMPORT PRO with BuddyPress in the forum Third Party Plugins 9 years, 9 months ago
Unless they have an add-on to support BuddyPress, you’re out of luck (unless you write one yourself).
-
Mary updated the Component API ui page, on the BuddyPress Codex 9 years, 9 months ago
This page is under review and shouldn’t be published until revised – ~hnla
This page documents the Component API (Application Programming Interface) available to BuddyPress plugin developers, and how to use […]
-
Mona sinha's profile was updated 9 years, 9 months ago
-
Henry Wright replied to the topic Latest Activity Image on Members Loop in the forum How-to & Troubleshooting 9 years, 9 months ago
Do you mean you want to show the post thumbnail?
-
Henry Wright replied to the topic Member Stats in the forum Requests & Feedback 9 years, 9 months ago
WooCommerce with the Memberships extension is a good starting point. Memberships is a premium extension but I’ve used successfully in the past.
I’m sure there’s a statistics add on too.
-
Paul Wong-Gibbs replied to the topic Open Source Theme: Your Voice is Needed in the forum Creating & Extending 9 years, 9 months ago
I think design by committee does not work. 🙂
-
Paul Wong-Gibbs replied to the topic Image not saving in xprofile textarea field in the forum How-to & Troubleshooting 9 years, 9 months ago
“get” filters don’t modify data on input/on save, which is when KSES is normally run.
Off-hand I don’t know which filter does this, I’d suggest looking through the top of the bp-xprofile-filters.php file and comment them out until you find the one that lets you do what you want.Then hopefully you/we can modify that filter, somehow, once we know…[Read more]
-
Paul Wong-Gibbs replied to the topic Duplicate xProfile Field on Edit Profile Page in the forum How-to & Troubleshooting 9 years, 9 months ago
Yes. There’s some sort of bug in the W3 Total Cache’s object cache file. Last time a few of us looked into it, we didn’t figure out what the problem was. However, we tested several other object cache loaders (I think https://github.com/tollmanz/wordpress-pecl-memcached-object-cache and https://wordpress.org/plugins/wp-redis/) and the problem did…[Read more]
-
Paul Wong-Gibbs replied to the topic Conflicts with BuddyPress and Pemanent Links in the forum How-to & Troubleshooting 9 years, 9 months ago
If you set permalinks to something not-default, and then visit a wordpress blog post on your site, does it work?
-
Gustavo replied to the topic buddy press Activity status update is redirected to media link in the forum How-to & Troubleshooting 9 years, 9 months ago
@thefocusunlimitedcom How did you solve it? Same happens to me.
-
Henry Wright replied to the topic Activation email in the forum Installing BuddyPress 9 years, 9 months ago
Can you check if it’s going to their spam mailbox?
-
Henry Wright replied to the topic Buddypress Registation-related pages & buttons not showing in the forum How-to & Troubleshooting 9 years, 9 months ago
I haven’t read that article but I mean using a complete WordPress install as a testing environment. It’s important to have something separate from your live website.
-
Henry Wright replied to the topic Buddypress Registation-related pages & buttons not showing in the forum How-to & Troubleshooting 9 years, 9 months ago
The only thing I haven’t done is strip everything down; deactivate all the plugins and switch to default theme. I could do that, but do I lose configuration I already did to my theme now?
In theory you should be able to switch theme without problems, but unfortunately this isn’t always the case. My advice would be to set up a testing install (…[Read more]
-
Henry Wright replied to the topic Profiles won't load – I get "page isn't working" error in the forum How-to & Troubleshooting 9 years, 9 months ago
Can you list the plugins you’re using? The likely cause is either a) a plugin b) your theme or c) some code snippet you have in bp-custom.php.
-
Henry Wright replied to the topic Different forum permissions in the forum How-to & Troubleshooting 9 years, 9 months ago
Forum topics are a bbPress thing. If you have questions related to those, bbPress is the best place:
-
@mercime updated the Moderate Activity Streams page, on the BuddyPress Codex 9 years, 9 months ago
BuddyPress provides admin dashboard panels to help you manage all the different activities throughout the site, similar to the way you manage comments and other content. This screen is customizable in the same […]

-
Henry Wright replied to the topic Using plugin for online gaming community with heavy site traffic in the forum Installing BuddyPress 9 years, 9 months ago
Just wanted to reiterate what has been said above: it’s more about what your users are doing than the number of them.
-
Henry Wright replied to the topic How to get buddypress to work with my theme ? in the forum How-to & Troubleshooting 9 years, 9 months ago
Try asking the theme author to add BuddyPress support. It’s easy for themes to support BuddyPress ever since the template hierarchy went live in BP 1.7.
-
Henry Wright replied to the topic [Resolved] Create new Post on updating Activities in the forum How-to & Troubleshooting 9 years, 9 months ago
The
bp_activity_addaction fires at the end of adding a new activity item. So you can hook a custom function to that and add your custom post within that. Here’s an example:add_action( 'bp_activity_add', function( $r ) {// Insert a new post.
wp_insert_post(
array(
'post_type' => 'activitfeed',…[Read more] - Load More