-
Boone Gorges replied to the forum topic List of topic pages next to forum topic (bp_the_topic_pagination) in the group How-To and Troubleshooting 12 years, 7 months ago
If you want to use it in a theme, try putting it in a function wrapper and then calling that function in your template. In functions.php:
`function bbg_forum_pag() {
global […] -
Boone Gorges replied to the forum topic Email Group Email subscription & adding blog posts to activity feed in the group Creating & Extending 12 years, 7 months ago
Here’s what I suggest.
Copy the function
bp_blogs_record_post()
to your own plugin, and rename it. Near the beginning of the function, add a little logic that does the following:
– Gets the post categories, […] -
Boone Gorges replied to the forum topic How to limit activty loop to friends only sitewide with the exception of the admin? in the group How-To and Troubleshooting 12 years, 8 months ago
There’s a couple different things happening here.
First, because you’re hardcoding the additional parameters directly in the template, they apply to everywhere in your theme where you show activity. You might […]
-
Boone Gorges replied to the forum topic The Register Button goes to Home page? in the group Creating & Extending 12 years, 8 months ago
It looks like BuddyPress was not properly installed. You should never see the ‘You have no groups’ message, unless you have manually deleted something from the database.
-
Boone Gorges replied to the forum topic Buddypress menus in the group How-To and Troubleshooting 12 years, 8 months ago
The purpose of the BuddyBar is to provide a number of handy links throughout an entire WP/BP installation. I’d suggest that you just get rid of it on small screen sizes.
Has anyone been able to reduce all the […]
-
Boone Gorges replied to the forum topic Group Forum within the Group itself? in the group Creating & Extending 12 years, 8 months ago
I got this error when I click on the groups tab
This is a problem with the BuddyPress Groups Extras plugin. Try disabling it. You should also turn down the PHP error reporting level; it should never show this […]
-
Boone Gorges replied to the forum topic admin avatar appears on users profile in the group How-To and Troubleshooting 12 years, 8 months ago
What theme are you using?
-
Boone Gorges replied to the forum topic The Register Button goes to Home page? in the group Creating & Extending 12 years, 8 months ago
Works fine for me. If you’re being redirected to the home page, it’s probably because you are logged in – logged-in users are not allowed to look at the Register page.
-
Boone Gorges replied to the topic [Resolved] Preventing group members from inviting others? in the forum How-to & Troubleshooting 12 years, 8 months ago
If you don’t want anyone in any group to be able to send invites, put the following in your bp-custom.php file:
function bbg_no_send_invites( $can_send_invites ) {
$can_send_invites = false;return $can_send_invites;
}
add_filter( 'bp_groups_user_can_send_invites', 'bbg_no_send_invites' );If you want to be more selective than that – for…[Read more]
-
Boone Gorges replied to the forum topic Preventing group members from inviting others? in the group How-To and Troubleshooting 12 years, 8 months ago
If you don’t want anyone in any group to be able to send invites, put the following in your bp-custom.php file:
`function bbg_no_send_invites( $can_send_invites ) {
$can_send_invites = false;return […]
-
Boone Gorges replied to the forum topic Cannot comment on or favorite Activity Stream posts in the group How-To and Troubleshooting 12 years, 8 months ago
It sounds like you have a javascript issue with your theme. What theme is it? Did it come with BuddyPress compatibility built in, or did you use the BP Template Pack to set it up yourself?
-
Boone Gorges replied to the forum topic List of topic pages next to forum topic (bp_the_topic_pagination) in the group How-To and Troubleshooting 12 years, 8 months ago
Anything’s possible 😉
You won’t be able to do it with
bp_the_topic_pagination()
because that function requires that you are inside of a single topic loop, which you’re not.Try something […]
-
Boone Gorges replied to the forum topic Only My Profile page 404ing after 1.5 upgrade … ? in the group How-To and Troubleshooting 12 years, 8 months ago
By default on my install, BP_ENABLE_USERNAME_COMPATIBILITY_MODE was “true”. I’m not sure why.
I’m not sure why either. By default, BP does not define it at all, much less to
true
. It sounds like setting it […] -
Boone Gorges replied to the forum topic Buddypress 1.5.5 Update issues in the group How-To and Troubleshooting 12 years, 8 months ago
It sounds like the BuddyPress Stalker plugin is the culprit – my guess is that it is not initializing itself properly, so that when WP deactivates BuddyPress momentarily during the upgrade process, Stalker […]
-
Boone Gorges started the forum topic BuddyPress 1.5.5 is now available in the group Miscellaneous 12 years, 8 months ago
BP 1.5.5 is now available. It’s a security and maintenance release, recommended for all installations. Read more about it at the Codex https://codex.buddypress.org/releases/version-1-5-5/ and the buddypress.org […]
-
Boone Gorges updated the Version 1.5.5 page, on the BuddyPress Codex 12 years, 8 months ago
On March 26, 2012, BuddyPress 1.5.5 was released to the public. This is a maintenance and security update.
For Version 1.5.5, the database version (bp-db-version in wp_options) was 3820, and the Trac revision […]
-
Boone Gorges replied to the forum topic Only My Profile page 404ing after 1.5 upgrade … ? in the group How-To and Troubleshooting 12 years, 8 months ago
I don’t think we can just ignore the -2 issue, because I think that it points to a larger confusion between
user_nicename
anduser_login
on your installation. I’m not sure what kind of further debugging can […] -
Boone Gorges replied to the forum topic Only My Profile page 404ing after 1.5 upgrade … ? in the group How-To and Troubleshooting 12 years, 8 months ago
Not sure where to start with this, but the
-2-2
problem reminds me of https://buddypress.trac.wordpress.org/ticket/2642. Note that that ticket had to do with a very specific problem which is, I think, different […] -
Boone Gorges replied to the forum topic Only My Profile page 404ing after 1.5 upgrade … ? in the group How-To and Troubleshooting 12 years, 8 months ago
Are you, by chance, using the following configuration setting?
define( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE', true );
It would be in your wp-config.php file, or perhaps bp-custom.php.
-
Boone Gorges replied to the forum topic Getting started with extending your Buddypress Groups. in the group BuddyPress Group Skeleton Component 12 years, 8 months ago
@cj-kruger Sorry for the delay in getting back to you – this got lost in my todo list.
The basic idea behind this is quite nice. It does give the foundation for adding lots of custom data to your group. I […]
- Load More
@boonebgorges
Active 1 year, 3 months ago