-
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
Either you haven’t placed the function in the right place (should go right after the
<?phpin your theme's functions.php), or you're not correctly referencing the nav items. Remember that they're case-sensitive. -
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
Awesome, thanks Roger!
-
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
@ri-kun The answer to your second question is not straightforward, though it has been discussed before on this forum. I suggest posting it in another thread so that other users will be able to help you with it. You might also have a look at this plugin by @pollyplummer https://wordpress.org/extend/plugins/buddypress-sliding-login-panel/
-
Boone Gorges posted a new activity comment 15 years, 2 months ago
I’ve notified @johnjamesjacoby, who is the only one who can mark a user as spam at the moment.
-
Boone Gorges posted on the forum topic Update User Activitys Stream by RSS Feed in the group How-To and Troubleshooting: 15 years, 2 months ago
This plugin https://wordpress.org/extend/plugins/bp-external-activity/ has the basic infrastructure to do what you’re looking for, though it doesn’t yet have a way for users to enter their own RSS feeds via a front-end UI. I plan to add that in the next version.
-
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
@blogmudgeon Glad to help 🙂 @ri-kun bp_core_remove_nav_item doesn’t take multiple arguments. Try something like:
Add additional lines for nav items you want to remove. And make them lowercase, as the names might be case-sensitive and they are almost certainly lowercase when they are initially added. functions.php, in your theme directory, is the…[Read more] -
Boone Gorges posted on the forum topic Activity stream replies in the group Creating & Extending: 15 years, 2 months ago
I’d do it with jquery. When the page loads, replace all but the most recent replies with a Read More link.
-
Boone Gorges posted on the forum topic How to Exclude a Group From the Groups Loop in the group How-To and Troubleshooting: 15 years, 2 months ago
I have grand designs of adding things like exclude parameters to all the bp_has_x loops. Now that the 1.2 branch has been merged into the trunk, I can have a swing at those designs 🙂
-
Boone Gorges posted a new activity comment 15 years, 2 months ago
Thanks!
-
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
The following function, placed into your theme’s functions.php or bp-custom.php file, will remove the Blogs nav item from the Members section of the site:
function boone_remove_blogs_nav() { bp_core_remove_nav_item( 'blogs' ); } add_action( 'bp_setup_nav', 'boone_remove_blogs_nav', 15 );Other top-level nav items can be removed by replacing…[Read more] -
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
Roger’s right – bp_core_remove_nav_item() is the function you want. See bp-core.php to see how that function works.
Also, please don’t bump your question more than once every few days. This board is not so well-trafficked that you can expect an answer to every question within a few hours, especially on the weekend.
-
Boone Gorges posted on the forum topic All those premium plugins drive me crazy! in the group Miscellaneous: 15 years, 2 months ago
I give pretty much all my work away for free, but I fully support the right of others not to do so. As @travel-junkie suggests, in the long run the community will be healthier if there are multiple paths available for developers to create GPL code and at the same time make a living. Some will […]
-
Boone Gorges posted a new activity comment 15 years, 2 months ago
No rush. I could phase it in if need be. Thanks for your work on it!
-
Boone Gorges posted on the forum topic Remove Automatic Links in Profile in the group How-To and Troubleshooting: 15 years, 2 months ago
My plugin is not needed. Do this: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-automatic-links-in-profile/#post-32749
-
Boone Gorges posted an update 15 years, 2 months ago
@r-a-y You given any more thought to the replied-to part of https://buddypress.org/community/groups/buddypress-org-ninjas/forum/topic/will-you-develop-one-of-these-buddypress-org-enhancements/?topic_page=1&num=15#post-63259? I’d like to make this a Ninja priority
-
Boone Gorges posted on the forum topic Approve groups before they are listed in the group How-To and Troubleshooting: 15 years, 2 months ago
@bmunch Your suggestion (groups can be created only by users of a certain level) would be much easier to implement than true moderation of group creation. You’d just have to wrap some of the “create a group” elements in the UI in a
if ( current_user_can() )check, and maybe add a few such checks at […] -
Boone Gorges posted on the forum topic 404 Page not found in the group Installing BuddyPress: 15 years, 2 months ago
Have you changed your permalink settings? Dashboard > Settings > Permalinks. Change them to anything except for the first option.
-
Boone Gorges posted on the forum topic Features for BuddyPress in the group Requests & Feedback: 15 years, 2 months ago
You could hack together something like Lifestream fairly easily using https://wordpress.org/extend/plugins/bp-external-activity/. There’s no interface for it yet, but the infrastructure is all there. Jeff Sayre has said that he’ll be releasing his Privacy Component shortly after 1.2.6 is released. The kind of rich tagging you’re talking about…[Read more]
-
Boone Gorges posted on the forum topic BP and Tube Site w/User Uploads? (Hodge Podge) in the group Creating & Extending: 15 years, 2 months ago
The social features of BuddyPress are in addition to, not in place of, the ‘posting’ features of WordPress. If you set up a WP site so that users can write and publish new blog posts, BuddyPress won’t change that.
-
Boone Gorges posted on the forum topic How to check if a member’s email address contains certain words in the group How-To and Troubleshooting: 15 years, 2 months ago
Try something like this, Anton:
function boone_get_current_email() { global $current_user; get_currentuserinfo(); if ( strpos( $current_user->user_email, 'changeme.username@yourdomain.com' ) !== false ) { $redirect = 'whatever your redirect URL is'; wp_redirect( $redirect ); } } add_action( 'plugins_loaded', 'boone_get_current_email' );Totally…[Read more] - Load More
@boonebgorges
Active 2 years, 3 months ago
I did take a brief look at adding “replied to” support a month ago. Had a bunch of weird permalink hacks, want to revisit and recode a better solution.
No rush. I could phase it in if need be. Thanks for your work on it!