-
Boone Gorges replied to the forum topic Logging Bugs in the group How-To and Troubleshooting 12 years, 8 months ago
Do you have strict cookie settings on your browser? Make sure you’re set up to accept cookies from buddypress.trac.wordpress.org (or try on a browser with default cookies). You may also try clearing your cache.
-
Boone Gorges replied to the forum topic Disable HTML in activity updates in the group How-To and Troubleshooting 12 years, 9 months ago
I don’t know off the top of my head how to do that, unfortunately. The only way I can imagine is something like this:
– filter bp_activity_allowed_tags and disallow all tags except for<a>
– then write another […] -
Boone Gorges replied to the forum topic Sitewide Forum Help in the group How-To and Troubleshooting 12 years, 9 months ago
Right now, BP is transitioning between an old version of bbPress (1.x) to the newest version (2.x), which is totally rewritten. The implementation of Sitewide Forums in BP 1.5 uses bbPress 2.x, while group forums […]
-
Boone Gorges replied to the forum topic Migrating from Drupal in the group Installing BuddyPress 12 years, 9 months ago
The standard WP import XML format is really meant to handle WP content (posts, pages, tags, etc) rather than users and BP data. If you want to see an example of some PHP that processes data for import into BP, you […]
-
Boone Gorges replied to the forum topic Where I can find the log out function in the Buddypress ? in the group Creating & Extending 12 years, 9 months ago
To elaborate on what @DJPaul said – BP uses WP’s logout, which is handled by wp-login.php. In particular, a request is sent to wp-login.php?action=logout, with a redirect_to argument of the current BP page.
-
Boone Gorges replied to the forum topic Don't load comment box until it's clicked in the group How-To and Troubleshooting 12 years, 9 months ago
Which comment boxes are you talking about? Which theme are you using?
-
Boone Gorges replied to the forum topic Disable HTML in activity updates in the group How-To and Troubleshooting 12 years, 9 months ago
If you want to remove all HTML, this should work:
`function bbg_remove_activity_html( $content ) {
return strip_tags( $content );
}
add_filter( ‘bp_get_activity_content_body’, […] -
Boone Gorges replied to the forum topic Sharing experience from our ’Facebook LMS’ modifications in the group BuddyPress ScholarPress Courseware 12 years, 9 months ago
Wow, this is really great! Thanks a million for sharing.
-
Boone Gorges replied to the forum topic Custom Profile Groups/Fields Not Showing in the group How-To and Troubleshooting 12 years, 9 months ago
I’m a bit unclear on the use of the word ‘groups’ here (BP is not entirely clear either). There are ‘profile field groups’, which are groupings of profile fields, and then there are Groups. You’re talking […]
-
Boone Gorges replied to the forum topic Get user ID (and custom field) outside of loop in the group Creating & Extending 12 years, 9 months ago
The function you want is
xprofile_get_field_data()
. It takes two parameters: the field name/ID, and the user_id. So, for the logged in user,$county = xprofile_get_field_data( 'County', bp_loggedin_user_id() );
-
Boone Gorges replied to the forum topic Migrating from Drupal in the group Installing BuddyPress 12 years, 9 months ago
I don’t know of any straightforward migration tools, unfortunately. I don’t know much about Drupal’s export capabilities – maybe something like this http://groups.drupal.org/content-migration-import-and-export […]
-
Boone Gorges replied to the forum topic Blank User profile, Create Group and other deeper pages… in the group How-To and Troubleshooting 12 years, 9 months ago
How did you build your theme? Did you use the BP Compatibility Pack, or is it a child theme of bp-default? It’s possible that you’re missing some of necessary template files. (like those inside /members/single/)
-
Boone Gorges replied to the forum topic calling messages_get_unread_count() in new php file in the group How-To and Troubleshooting 12 years, 9 months ago
Finally, this code probably won’t work all by itself, because
messages_get_unread_count()
assumes a logged-in user – but on an AJAX request, you’re not guaranteed to have that. So you may want to amend your […] -
Boone Gorges replied to the forum topic calling messages_get_unread_count() in new php file in the group How-To and Troubleshooting 12 years, 9 months ago
The problem is that when you load message.php via AJAX, you’re not loading all of WordPress and BuddyPress, which means that the messages_get_unread_count() function is not defined.
Instead of using […]
-
Boone Gorges replied to the forum topic [Resolved] Profile name field doesn’t change after upgrading 1.5.1 to 1.5.4 in the group How-To and Troubleshooting 12 years, 9 months ago
Hi @takuya and @cyrille13 – Sorry for some of the miscommunications above. It was only after seeing the linked bug report that I was able recognize that what you were reporting was actually an instance of […]
-
Boone Gorges updated the Changing Internal Configuration Settings page, on the BuddyPress Codex 12 years, 9 months ago
There are many internal configuration settings that can be changed by adding a configuration definition line to your wp-content/plugins/bp-custom.php file. Here’s a list of the current setting that can be […]
-
Boone Gorges updated the BP_ENABLE_MULTIBLOG page, on the BuddyPress Codex 12 years, 9 months ago
BP_ENABLE_MULTIBLOG
is a BuddyPress constant that, when defined astrue
, allows your BuddyPress content to be displayed on any site in your WordPress Multisite network.By default,
BP_ENABLE_MULTIBLOG
is […] -
Boone Gorges updated the BP_ENABLE_MULTIBLOG page, on the BuddyPress Codex 12 years, 9 months ago
BP_ENABLE_MULTIBLOG
is a BuddyPress constant that, when defined astrue
, allows your BuddyPress content to be displayed on any site in your WordPress Multisite network.By default,
BP_ENABLE_MULTIBLOG
is […] -
Boone Gorges replied to the forum topic Can't update Max Users or Max Groups display options in the group BP Group Management 12 years, 9 months ago
Thanks for the report. I’ve opened a bug ticket: https://github.com/boonebgorges/bp-group-management/issues/2
The problem is due to recent(ish) changes in the way that WordPress Multisite handles settings panels.
-
Boone Gorges replied to the forum topic Bulk assign a user to administer all groups (except 4) in the group BP Group Management 12 years, 9 months ago
BP Group Management is not really meant to do this kind of thing. The easiest way to do it is with code, something like:
`
function bbg_promote_user_in_all_groups() {
global $bp, $wpdb;if ( […]
- Load More
@boonebgorges
Active 1 year, 3 months ago