-
David Cavins replied to the topic Is there a way to display BuddyPress profile on multiple pages? in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi r083r7-
Within the same site, you could write a short code that would render the profile. Outputting profile data is pretty straightforward: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/
One another site, I’m less sure. You’d need BP API or similar, which we’re just now writing.
Check our…[Read more]
-
David Cavins replied to the topic These field options are invalid error in the forum How-to & Troubleshooting 9 years, 10 months ago
I really have no idea, but checking the code base, that error is thrown when a field type supports options (like a dropdown or checkbox set) and the data posted at save is unpopulated or is not an array. If you’re familiar with the developer tools in Firefox or Chrome, visit that page and submit the form, then see what the
$_POSTpayload looks…[Read more] -
David Cavins replied to the topic Registration and activate page in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi isavarg-
You’ll have to be logged out to see the registration or activation page, otherwise they redirect to the home page. Have you tried it while logged out?
-
David Cavins replied to the topic Remove header images in the forum How-to & Troubleshooting 9 years, 10 months ago
Since it’s theme specific, your best choice is to create a child theme and override that template part when you don’t want to see the image. (There are lots of conditional you can use, like
is_buddypress()which returns true on a BP page.)It’s extremely unlikely that there will be a plugin that changes one aspect of a specific theme.
Child…[Read more]
-
David Cavins replied to the topic BuddyPress 2.6.2 is now available in the forum Miscellaneous 9 years, 11 months ago
Hi Kineta-
Your best bet is to start a new topic for support with your issue. In that topic, it would be helpful to know which version of bbPress you’re using, what version of BuddyPress you upgraded from (to 2.6.2) as well as the usual stuff.
Thanks!
-David
-
David Cavins replied to the topic BuddyPress 2.6.2 is now available in the forum Miscellaneous 9 years, 11 months ago
Visit a forum, like https://buddypress.org/support/forum/how-to/ and scroll to the bottom of the topic list. The new topic form should be down there.
-
David Cavins replied to the topic BuddyPress 2.6.2 is now available in the forum Miscellaneous 9 years, 11 months ago
wadece1979- You should start a new topic for your support request. In that topic, describe your WP setup (single site, multisite) and whether the problem persists if you use a different theme. Thanks!
-
David Cavins started the topic BuddyPress 2.6.2 is now available in the forum Miscellaneous 9 years, 11 months ago
BuddyPress 2.6.2 is now available. https://buddypress.org/2016/08/buddypress-2-6-2/
Check out the changelog for more information.
https://codex.buddypress.org/releases/version-2-6-2/ -
David Cavins wrote a new post on the site BuddyPress.org 9 years, 11 months ago
BuddyPress 2.6.2 is now available. This is a maintenance release that fixes a few bugs introduced in 2.6. For more information, see the 2.6.2 milestone on BuddyPress Trac.
Update to BuddyPress 2.6.2 today in yo […]
-
David Cavins replied to the topic Autocomplete usernames when cosing private message in the forum How-to & Troubleshooting 10 years ago
That’s the default behavior. If you’re not getting a list of matches, open your browser console to see what’s going wrong with the AJAX request that fetches the list of matches.
Note that if you type the @ symbol, you won’t find matches, so just start typing the username or display name.
-
David Cavins replied to the topic [Resolved] Still getting a Fatal Error with BP Group Hierarchy plugin in the forum Third Party Plugins 10 years ago
Hi there-
Yes, 2.6.1 (and 2.6.1.1) have a conflict with BP Group Hierarchy. The problem is caused by the addition of the autoloader check in
bp-loader.phpbecause BPGH instantiates its class before BP knows if the groups component is active or not. The short term fix is, unhappily, to changebp-loader.php. Comment out the line that readsreturn…[Read more] -
David Cavins replied to the topic Help me sort out my BuddyPress install in the forum How-to & Troubleshooting 10 years ago
To add your own create group button output function, unhook the current ones:
remove_action( 'bp_groups_directory_group_filter', 'bp_legacy_theme_group_create_nav', 999 );
remove_action( 'bp_groups_directory_group_filter', 'bp_group_backcompat_create_nav_item', 1000 );and add your own to
bp-custom.php:
add_action(…[Read more] -
David Cavins replied to the topic Link to User's Group's Forums in the forum How-to & Troubleshooting 10 years ago
Menus aren’t very php-friendly, usually, but you could do something like this:
[Read more]
<?php
if ( groups_is_user_member( bp_loggedin_user_id(), $group_id_of_group_A ) ) {
$group = groups_get_group( array( 'group_id' => $group_id_of_group_A ) );
?>
<li><a href="<?php echo bp_get_group_permalink( $group ) . 'forum/'; ?>"><?php bp_group_name( $group )… -
David Cavins replied to the topic Confirmation Email in the forum Requests & Feedback 10 years ago
I’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.
<?php[Read more]
add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) );
add_filter( 'bp_registration_needs_activation', '__return_false' );
add_filter(… -
David Cavins updated the Version 2.6.1.1 page, on the BuddyPress Codex 10 years ago
Version 2.6.1.1 is a BuddyPress maintenance release that fixes a problem introduced in 2.6.1.
For Version 2.6.1.1, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r10930. […]
-
David Cavins updated the Version 2.6.1 page, on the BuddyPress Codex 10 years ago
Version 2.6.1 is a BuddyPress maintenance and security release.
For Version 2.6.1, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r10923. Read the full ticket log […]
-
David Cavins wrote a new post on the site BuddyPress.org 10 years ago
BuddyPress 2.6.1.1 is now available. This is a maintenance release that fixes a bug introduced in 2.6.1. For more information, see the 2.6.1 milestone on BuddyPress Trac.
Update to BuddyPress 2.6.1.1 today in […]
-
David Cavins wrote a new post on the site BuddyPress.org 10 years ago
BuddyPress 2.6.1 is now available. This is a maintenance and security release, and is a recommended upgrade for all BuddyPress installations.
BP 2.6.1 fixes bugs in several components. For more information, […]
-
David Cavins replied to the topic restrict messages to user-admin-user in the forum How-to & Troubleshooting 10 years ago
@Earl_D: No. The above snippets are added to a custom version of the
buddypress/members/single/messages/compose.phpfile. Basically, if you add this file to your theme (following the structurebuddypress/members/single/messages/), it will be used in preference to the one BuddyPress ships with. Read more about adding custom template parts:…[Read more] -
David Cavins updated the Group Extension API page, on the BuddyPress Codex 10 years, 1 month 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 […]
- Load More
@dcavins
Active 2 weeks, 1 day ago