-
Boone Gorges replied to the topic Activity stream from one site overrides another's in the forum How-to & Troubleshooting 11 years ago
Multi-network does have some issues (and has been real-world tested by relatively few people), so it could well be that this is a bug.
I’m a bit confused about how to reproduce, though. Is the issue
(a) that when you have activity streams from different networks on the same install open in the same window, and post to the stream in one of them,…[Read more]
-
Boone Gorges replied to the topic Critical Exploit: Backdoor Spam Registrations via bbPress in the forum How-to & Troubleshooting 11 years ago
@dennish The installation of bbPress that is packaged with BuddyPress contains a file at
buddypress/bp-forums/bb-config.php
. When you attempt to access the bbPress installation directly as you describe, the bbPress bootstrap loads this bb-config.php file, and sends a 403 Forbidden header to the browser. Thus, it should NOT be the case that users…[Read more] -
Boone Gorges updated the bp_activity_add() page, on the BuddyPress Codex 11 years, 1 month ago
bp_activity_add()
is used to insert new activity items into the database.Usage
Parameters
$args
An array that describes the activity item that you’re creating. Possible values:
[…]
-
Boone Gorges replied to the topic Group Extension API questions in the forum Creating & Extending 11 years, 3 months ago
– Yes,
'nav_item_name'
should be translatable if you plan to distribute the plugin. If it’s for a custom installation, it doesn’t matter.– Yes, you can set
'enable_nav_item'
(or any other config value) conditionally. I’d do your conditional logic *inside* of the constructor, to be sure that it’s loaded late enough:
function __construct() {…
[Read more] -
Boone Gorges wrote a new post on the site BuddyPress.org 11 years, 3 months ago
BuddyPress 1.8.1 is now available. This is a maintenance release, which features improved compatibility with WordPress 3.6, as well as fixes for some RSS feeds, the
meta_query
parameters in the Groups and Activity […] -
Boone Gorges updated the Version 1.8.1 page, on the BuddyPress Codex 11 years, 3 months ago
On August 5, 2013, BuddyPress 1.8.1 was released to the public. This is a maintenance update.
For Version 1.8.1, the database version (_bp_db_version in wp_options) was 6080, and the Trac revision was 7340.
<h2 […]
-
Boone Gorges replied to the topic Custom members directory breaks pagination in the forum How-to & Troubleshooting 11 years, 3 months ago
The problem is, in essence, this: You are filtering for member type/role at the template level, *after* the query has already taken place. So: you run
bp_has_members()
. It returns 10 users that match the current params, which include the current page, the per_page number, and the dropdown filter (last active, alphabetical, etc). Then, inside of…[Read more] -
Boone Gorges replied to the topic Custom members directory breaks pagination in the forum How-to & Troubleshooting 11 years, 3 months ago
It’s hard to tell exactly without knowing more about how you’ve customized your templates, but it’s possible that this is a problem only with AJAX. A quick fix may be to disable AJAX pagination for the members directory. Do so by adding the ‘no-ajax’ class to the .pagination div, ie
<div id="pag-top" class="pagination no-ajax">
If you’re still…[Read more]
-
Boone Gorges updated the Group Extension API page, on the BuddyPress Codex 11 years, 4 months ago
Note: This guide is for use with BuddyPress 1.8+. A guide for using the Group Extension API with earlier versions of BP can be found at <a […]
-
Boone Gorges wrote a new post on the site BuddyPress.org 11 years, 4 months ago
The BuddyPress team is proud to announce BuddyPress 1.8 “Di Fara”!
What’s new in 1.8
BuddyPress 1.8 is a major feature release, containing many bugfixes and dozens of new features. Some of these items are […]
-
Boone Gorges updated the Group Extension API (1.8+ draft) page, on the BuddyPress Codex 11 years, 4 months ago
Note: This guide is for use with BuddyPress 1.8+. A guide for using the Group Extension API with earlier versions of BP can be found at <a […]
-
Boone Gorges updated the Version 1.8 page, on the BuddyPress Codex 11 years, 4 months ago
Version 1.8 is a major BuddyPress feature release. BuddyPress 1.8 introduces dozens of new features and enhancements, on top of hundreds of bugfixes.
For Version 1.8, the database version (
_bp_db_version
in […] -
Boone Gorges updated the Group Extension API (legacy) page, on the BuddyPress Codex 11 years, 4 months ago
Note: This guide is for use with versions of BuddyPress older than 1.8. In BP 1.8, the group extension API was rewritten. Plugins written as described below should continue to work, but for new projects you are […]
-
Boone Gorges wrote a new post on the site BuddyPress.org 11 years, 4 months ago
BuddyPress 1.8 is so close you can smell it! (Incidentally, it smells kinda like pizza.) The first release candidate (RC1) for BP 1.8 is now available.
“Release candidate” means we think everything’s in place […]
-
Boone Gorges wrote a new post on the site BuddyPress.org 11 years, 4 months ago
BuddyPress 1.7.3 is now available. This is a security and maintenance release, and we urge all installations running BP 1.5 or later to upgrade immediately.
Version 1.7.3 includes fixes for the following:
[…]
-
Boone Gorges updated the Version 1.7.3 page, on the BuddyPress Codex 11 years, 4 months ago
On July 10, 2013, BuddyPress 1.7.3 was released to the public. This is a maintenance and security update.
For Version 1.7.3, the database version (_bp_db_version in wp_options) was 6080, and the Trac revision […]
-
Boone Gorges wrote a new post on the site BuddyPress.org 11 years, 4 months ago
BuddyPress 1.8-beta2 is now available. Since our first 1.8 beta a few weeks ago, we’ve fixed a number of issues, especially related to the new
BP_Group_Member_Query
class. If you are a plugin or theme developer, […] -
Boone Gorges replied to the topic [Resolved] Custom-fields in Activity-content, error with function in the forum Creating & Extending 11 years, 4 months ago
You’ll have to do some more debugging. It’s probably the case that
$test_customfield
is empty; tryvar_dump( $test_customfield );
just after you’ve defined the variable, just to be sure. It’s also possible that the$post
global does not contain the information that you want at this particular point in the WP load order. Try passing the$post
…[Read more] -
Boone Gorges replied to the topic [Resolved] Custom-fields in Activity-content, error with function in the forum Creating & Extending 11 years, 4 months ago
Try this:
function test1() {
return 'this not';
} -
Boone Gorges updated the Template Tag Reference page, on the BuddyPress Codex 11 years, 5 months ago
(Work in Progress)
General Template Tags
bp_get_loggedin_user_nav()Uses the $bp->bp_nav global to render out the navigation within a BuddyPress install.
Each component adds to this navigation array within its […] - Load More
@boonebgorges
Active 1 year, 3 months ago