-
Boone Gorges posted on the forum topic Existing BuddyPress and want to Change to a Network with 1 BP installation in the group How-To and Troubleshooting: 13 years, 5 months ago
These instructions will show you how to enable Network Mode in WP: https://codex.wordpress.org/Create_A_Network This will not affect BP, except that you will have a Blogs tab on your main nav. I’m afraid I don’t know anything about the gamechangers part. If it turns out that you go with a Subdirectory Network installation, you’ll have to […]
-
Boone Gorges posted on the forum topic Problems for users in the group Invite Anyone: 13 years, 5 months ago
From the nature of the error, I’d say that Invite Anyone is not causing the problem. IA does not use the SimplePie class at all, so the out-of-memory problem is not being caused by IA. It’s probably that you have too many plugins running, and IA happens to be the straw that breaks the camel’s […]
-
Boone Gorges posted on the forum topic please update this plugin in the group Invite Anyone: 13 years, 5 months ago
OK. Glad it’s working now.
-
Boone Gorges posted on the forum topic Rejected Friendship Requests in the group How-To and Troubleshooting: 13 years, 5 months ago
Ignore the spammer, please.
-
Boone Gorges posted on the forum topic Fatal error: Call to undefined function sanitize() in /home/yourwet/public_html/story.php on line 21 in the group How-To and Troubleshooting: 13 years, 5 months ago
This does not appear to be a BuddyPress problem. The function sanitize() does not exist in BP or in WP. (The SimplePie class does contain a sanitize() method.) Look in your story.php file, which appears to be a custom PHP script, to find out more about what’s up.
-
Boone Gorges posted on the forum topic Copy docs to other groups in the group BuddyPress Docs: 13 years, 5 months ago
I guess I don’t see how a dedicated ‘copy’ UI would be better than simply selecting all in the first document, creating a new one, and then pasting the content of the old into the new. I’m having a hard time imagining the use case that would need to copy docs like this on a […]
-
Boone Gorges posted on the forum topic Fatal Error activating Invite Anyone in the group Invite Anyone: 13 years, 5 months ago
Also, can you tell me your WP/BP versions?
-
Boone Gorges posted on the forum topic Fatal Error activating Invite Anyone in the group Invite Anyone: 13 years, 5 months ago
I haven’t seen this exact problem, but I do know that it’s an ugly WordPress bug that is causing it. Am I correct in assuming that you see this error on the Dashboard only? That is, does the public side of your blog load OK? I’ve been meaning to send a patch to the WP […]
-
Boone Gorges posted on the forum topic Custom Profile (xprofile) data not being saved in the group How-To and Troubleshooting: 13 years, 5 months ago
If the problem is with registration only, and you have a custom registration screen, then it almost certainly has something to do with the registration customizations. There have been no changes in BP or WP, to the best of my knowledge, that would cause the problem you describe. But the only way to know for […]
-
Boone Gorges posted on the forum topic Selected doc displaying wrong info in the group BuddyPress Docs: 13 years, 5 months ago
OK, here’s a workaround, until the WP bug is fixed. Instead of using the WP loop functions in show_children_tab(), just do a foreach loop, like this: `function show_children_tab() { global $bp; // Get the child posts $child_posts_args = array( ‘post_type’ => $bp->bp_docs->post_type_name, ‘post_parent’ => get_the_ID() ); $child_posts = new…[Read more]
-
Boone Gorges posted on the forum topic Selected doc displaying wrong info in the group BuddyPress Docs: 13 years, 5 months ago
It looks like this is being caused by a WP bug, which is causing the $post global to get tainted by your subquery (in show_children_tab()). I’m not sure how to fix it. I’ll think about it.
-
Boone Gorges posted on the forum topic Selected doc displaying wrong info in the group BuddyPress Docs: 13 years, 5 months ago
I guess I’m not really sure what’s happening, based on what you’ve said here. Do you have a link or something? Have you done all of this by modifying the plugin itself, or have you done it through bp-custom.php or another plugin? Can you send me your modifications?
-
Boone Gorges posted on the forum topic BP Global Redirect Question in the group How-To and Troubleshooting: 13 years, 5 months ago
You’ll have to build the URL. Try this:
wp_redirect( $bp->root_domain . '/' . $bp->activity->slug );
-
Boone Gorges posted on the forum topic Selected doc displaying wrong info in the group BuddyPress Docs: 13 years, 5 months ago
What’s the URL of the page that is showing the wrong doc data?
-
Boone Gorges posted on the forum topic Selected doc displaying wrong info in the group BuddyPress Docs: 13 years, 5 months ago
How did you add the new tab?
-
Boone Gorges posted on the forum topic Sign-up redirects to Registration which goes nowhere… in the group How-To and Troubleshooting: 13 years, 5 months ago
It’s pretty easy to redirect users after login. Something like http://buddydev.com/buddypress/buddypress-trick-redirect-users-to-their-profile-on-login/ will work. If you only want to do it the *first* time a user logs in, or only if the user has not filled out the profile, it’s trickier. Before returning
bp_core_get_user_domain( $user->ID )
,…[Read more] -
Boone Gorges posted on the forum topic Disable /wp-admin/ for "normal" users in the group How-To and Troubleshooting: 13 years, 5 months ago
@naved – Put it in wp-content/plugins/bp-custom.php . Create that file if you don’t already have it, making sure to begin it with
-
Boone Gorges posted on the forum topic Can BuddyPress do this? in the group Miscellaneous: 13 years, 5 months ago
I don’t know of anything that will, at the moment, allow for the kind of “rating” you’re asking for here. I assume you’d use BP activity as your ‘ideas’, though you could also have a custom post type (which would require coding). You might check out BuddyPress Like, which might get you at least part […]
-
Boone Gorges posted on the forum topic Sign-up redirects to Registration which goes nowhere… in the group How-To and Troubleshooting: 13 years, 5 months ago
Have you tried just disabling BP’s registration hijacking? I haven’t tested myself, but it might work. In your functions.php:
if ( bp_core_is_multisite() )
remove_action( 'wp', 'bp_core_wpsignup_redirect' );
else
remove_action( 'init', 'bp_core_wpsignup_redirect' ); -
Boone Gorges posted on the forum topic Is there a way to add images to the Activity Timeline or to group posts? in the group How-To and Troubleshooting: 13 years, 5 months ago
What does “real posts” mean?
If you want the ability to include media in activity items, you might check out https://wordpress.org/extend/plugins/buddypress-activity-plus/
- Load More
@boonebgorges
Active 1 year, 4 months ago