-
David Cavins replied to the topic Remove header images in the forum How-to & Troubleshooting 8 years, 1 month 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 8 years, 2 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 8 years, 2 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 8 years, 2 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 8 years, 2 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 updated the Releases page, on the BuddyPress Codex 8 years, 2 months ago
The following are the various versions of BuddyPress, listed chronologically from the oldest to newest, along with the Change Log information on new features and improvements in each version.
N.B from version 1.5 […] -
David Cavins wrote a new post on the site BuddyPress.org 8 years, 2 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 8 years, 3 months 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 8 years, 3 months 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.php
because 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months 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 8 years, 4 months ago
@Earl_D: No. The above snippets are added to a custom version of the
buddypress/members/single/messages/compose.php
file. 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 8 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 […]
-
David Cavins updated the Version 2.6.0 page, on the BuddyPress Codex 8 years, 4 months ago
Version 2.6.0 is a major BuddyPress feature release.
For Version 2.6.0, the database version (_bp_db_version in wp_options) was 10469, and the Trac revision was 10898. Read the full ticket log here […] -
David Cavins started the topic BuddyPress 2.6.0 "Espejo" is now available in the forum Miscellaneous 8 years, 4 months ago
BuddyPress 2.6.0 “Espejo” is now available! https://buddypress.org/2016/06/buddypress-2-6-0/
Check out the changelog for more information.
—
Issues with BuddyPress 2.6.0:
BP Group Hierarchy causes a fatal error
BP Group Hierarchy needs to be updated to work with the new Navigation API.…[Read more]
- Load More
@dcavins
Active 1 month, 2 weeks ago