-
r-a-y posted on the forum topic Uninstall Problems in the group How-To and Troubleshooting: 13 years, 9 months ago
If you used the BuddyPress Template Pack plugin to add BP support to your theme, the plugin copies over template files to your theme’s directory.
You can remove these template files by deleting these directories in your theme:
/activity/
/members/
/groups/
/forums/
/blogs/
/registration/Also make sure you have BuddyPress and anything…[Read more]
-
r-a-y posted on the forum topic Fixing Alignment in the group How-To and Troubleshooting: 13 years, 9 months ago
I’ve edited the OP’s post above so it doesn’t break the layout.
-
r-a-y posted on the forum topic Problem intalling Forums in Buddypress: Fatal error: Out of memory (allocated 31719424) (tried to al in the group How-To and Troubleshooting: 13 years, 9 months ago
You can also try the instructions listed here to increase your memory limit:
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP -
r-a-y posted on the forum topic Register Fields Not Reading "Second Group" In Admin Panel.. in the group How-To and Troubleshooting: 13 years, 9 months ago
To find the profile group id, navigate to “BuddyPress > Profile Field Setup”. Then under the profile group you want, hover over the “Edit” or “Delete” link. You should see a link that looks like this:
/wp-admin/admin.php?page=bp-profile-setup&mode=edit_group&group_id=2
“group_id” is the variable you’re looking for. — The alternative is to remove…[Read more] -
r-a-y posted on the forum topic How do I add "Sign up"/"Register" button to sidebar? in the group How-To and Troubleshooting: 13 years, 9 months ago
Make sure you have turned on registration in WordPress. if you’re on single WordPress, navigate to “Settings > General” and check “Anyone can register”: https://codex.wordpress.org/Settings_General_SubPanel If you’re on WP multisite, navigate to “Super Admin > Options” and under “Allow new registrations”, make sure registration is not disabled.…[Read more]
-
r-a-y posted on the forum topic Search not working in the group How-To and Troubleshooting: 13 years, 9 months ago
See if search works with the bp-default theme; if it does, then it’s a problem with the custom theme.
-
r-a-y posted on the forum topic Join Group / Add friend / Cancel friendship buttons do not appear in the group How-To and Troubleshooting: 13 years, 9 months ago
BP Template Pack needs to be updated.
You need to update a few of the template files so they use the new BP_Button class:
https://codex.buddypress.org/theme-development/bp-default-theme-changelog/Match your template loop files with…[Read more]
-
r-a-y posted on the forum topic How to use "xprofile_get_field_data" in link title? in the group How-To and Troubleshooting: 13 years, 9 months ago
The problem could be using bp_get_group_member_id() in xprofile_get_field_data().
Where are you using this function? In the group member loop? If not, you’ll need to find the correct function to return the user ID.
$bp->displayed_user->id
might be what you’re looking for. -
r-a-y posted on the forum topic WordPress database error Unknown column 'feed' in 'where clause' for query in the group How-To and Troubleshooting: 13 years, 9 months ago
FWIW, I’ve encountered this on an install as well; it appears that the bp_activity_get_sitewide() function in BP_Activity_Activity::get_sitewide_items_for_feed() does not exist.
This might be what’s causing the problem.
-
r-a-y posted on the forum topic Profile Fields show on email to admin? in the group Creating & Extending: 13 years, 9 months ago
You need to override the new user admin email function:
https://codex.wordpress.org/Function_Reference/wp_new_user_notificationThen you need to call on some BuddyPress functions to grab the xprofile data.
xprofile_get_field_data() (located in bp-xprofile.php) will help.
—
If all this is foreign to you, short answer is “it’s possible, but…[Read more]
-
r-a-y posted on the forum topic Change the language! in the group How-To and Troubleshooting: 13 years, 9 months ago
You might want to download the localized version of BP.
According to the codex, the Italian version is located here:
http://www.buddypress-it.it/download/ -
r-a-y posted on the forum topic http://premium.wpmudev.org/ Legitamate? in the group Creating & Extending: 13 years, 9 months ago
Yes, WPMUDev requires a monthly subscription and like pcwriter said they don’t really focus on BuddyPress.
WPMUDev is pricey; I would go with BuddyDev if you really need some form of support. However keep in mind that BuddyDev is only maintained by one person, so you might want to consider that as well.
-
r-a-y posted on the forum topic Merging WordPress and BuddyPress in the group How-To and Troubleshooting: 13 years, 9 months ago
To install BuddyPress on a secondary blog, you can also read this:
https://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog/If you’re looking for a matching BP theme for your WordPress theme, currently BP Template Pack is the only plugin in town and it needs updating.
A premium theme with BP support built-in is the…[Read more]
-
r-a-y posted on the forum topic Which function should I call to see all private messages of a particular user? in the group How-To and Troubleshooting: 13 years, 9 months ago
-
r-a-y posted on the forum topic Any way to change generated avatars from Gravatar to a locally hosted pool of avatars? in the group Creating & Extending: 13 years, 9 months ago
Anything is possible; it just requires coding 😉
If you’re familiar with PHP and a bit of WordPress code, analyze /bp-core/bp-core-avatars.php for pointers.
-
r-a-y posted on the forum topic Upon registration users do get added to Buddypress but not to regular WP userlist in the group How-To and Troubleshooting: 13 years, 9 months ago
suhrmd – Your problem isn’t the same. You say that confirmation emails are not sent; please read this to see if this fixes your problem:
https://codex.buddypress.org/getting-started/faqs/specific-faqs/#register -
r-a-y posted on the forum topic Automatically create a group when a member subscribes (based on a profile field) in the group How-To and Troubleshooting: 13 years, 9 months ago
The create group function is groups_create_group(); it can be found in /bp-groups.php.
You can add checks for profile fields when a user activates their account with the “bp_core_activated_user” action, available in the bp_core_activate_signup() function (this can be found in /bp-core/bp-core-signup.php).
Hope that gives you a few pointers.
-
r-a-y posted on the forum topic Translating my-groups slug in the group How-To and Troubleshooting: 13 years, 9 months ago
You can, but it requires a few, little ninja hacks! “my-groups” is hardcoded in /bp-groups.php in v1.2, however you can remove the current navigation for my-groups, then add it back with your custom slug. Read this thread for pointers: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/hide-general-settings/ It uses the…[Read more]
-
r-a-y posted on the forum topic Error, if i compose a message in the group How-To and Troubleshooting: 13 years, 9 months ago
This is fixed in BuddyPress v1.3, which is about a month away from release.
In the meantime, you can make the following change to fix it:
https://trac.buddypress.org/changeset/3533 -
r-a-y posted on the forum topic oEmbed for BP 0.6-beta available! in the group oEmbed for BuddyPress: 13 years, 9 months ago
Development has not stopped; yes, I understand it’s almost been a year.
Patience is a virtue!Read this for updates:
https://buddypress.org/community/activity/p/125443/The next version is a complete rewrite from the 0.6-beta.
—
Re: limiting links – it’s possible by writing a plugin, but I probably won’t add it to this one.
- Load More
@r-a-y
Active 4 months, 4 weeks ago