-
Henry Wright replied to the topic hiding menu tabs in bp-custom file not working for loggedin user nav menu in the forum How-to & Troubleshooting 10 years ago
To make sure that last logout link is removed you should be able to do this:
function jemmatates_logout_nav_link( $logout_link ) {
$logout_link = '';
return $logout_link;
}
add_filter( 'bp_logout_nav_link', 'jemmatates_logout_nav_link' ); -
Henry Wright replied to the topic Extended profile import via CSV in the forum Miscellaneous 10 years ago
I’m not sure this is possible out of the box. You could either try finding a plugin or perhaps implement the
Iteratorinterface if you’re comfortable with PHP to go through the CSV file and insert the values into the db. -
Henry Wright replied to the topic delete Comments on all pages in the forum How-to & Troubleshooting 10 years ago
You should be able to view and delete page comments in the WordPress admin area.
-
Henry Wright replied to the topic Activity Stream Not Loading/Displaying in the forum How-to & Troubleshooting 10 years ago
Thanks for the screenshots. Those could be issues with the theme. I can’t reproduce the issue myself with Twenty Fifteen. Can you upload screenshots for Twenty Fifteen?
-
Henry Wright replied to the topic Error in Release Candidate 2.5 in the forum How-to & Troubleshooting 10 years ago
Hi @mrjarbenne
Can you open a ticket on Trac?
-
Henry Wright replied to the topic Activity Stream Not Loading/Displaying in the forum How-to & Troubleshooting 10 years ago
Strange that you’re seeing a difference between your front page and activity page. That could indicate there’s an issue with your templates. Which version of WP and BP are you using?
-
Henry Wright replied to the topic Activity Stream Not Loading/Displaying in the forum How-to & Troubleshooting 10 years ago
On Twenty Fifteen, the Load More button disappears after multiple clicks
Could you have reached the end of your activity items?
-
Henry Wright replied to the topic Needing BuddyPress Event Calendar in the forum Installing BuddyPress 10 years ago
Have you tried BuddyPress Simple Events?
-
Henry Wright replied to the topic Activity Stream Not Loading/Displaying in the forum How-to & Troubleshooting 10 years ago
Can you check if it happens on Twenty Fifteen with all plugins deactivated? I’m testing on a fresh install of trunk and can’t reproduce the problem.
-
Henry Wright replied to the topic Update stream when deleting posts in bbpress in the forum Installing BuddyPress 10 years ago
Just to point out, you’ll probably want to delete both the activity update and comments on that update. Useful will be
bp_activity_delete()andbp_activity_delete_comment() -
Henry Wright replied to the topic Activity Stream Not Loading/Displaying in the forum How-to & Troubleshooting 10 years ago
Which themes does the problem happen on?
-
Henry Wright replied to the topic Using Buddy Press to create a media sharing site in the forum How-to & Troubleshooting 10 years ago
You can add functionality to BuddyPress using plugins. If a particular feature isn’t available as a plugin you could try implement it yourself or ask a coder for help. BuddyPress has a huge API that will help.
The look and feel of your website is governed by the theme you choose.
If you already have a dev site operational, try out some…[Read more]
-
Henry Wright replied to the topic Make Everyone be Friends in the forum Creating & Extending 10 years ago
On each new member registration, you could loop through each existing member and add the new member as a friend?
-
Henry Wright replied to the topic How to display different profile fields based on user role in the forum How-to & Troubleshooting 10 years ago
All of the core BuddyPress navigation functions are in bp-core/bp-core-buddybar.php. You can see the contents of that file here:
https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/bp-core-buddybar.php
-
Henry Wright replied to the topic BuddyPress Users profile picture uploading error in the forum Showcase 10 years ago
This is a guess but perhaps this is a permissions issue? Some user roles can’t upload files by default.
Ref: https://codex.wordpress.org/Roles_and_Capabilities#Subscriber
-
Henry Wright replied to the topic How to display different profile fields based on user role in the forum How-to & Troubleshooting 10 years ago
user_can()will be a useful function. It accepts aWP_Userobject or user ID and a role name.Ref: https://codex.wordpress.org/Function_Reference/user_can
-
Henry Wright replied to the topic notification date received not accurate. in the forum How-to & Troubleshooting 10 years ago
Hi @bruce30
You can change the date format. See Date Formats for more info.
-
Henry Wright replied to the topic Friends in "Profile Page" in the forum How-to & Troubleshooting 10 years ago
Yes, you can use the
includeparameter to pass a list of user IDs. For example:$friend_ids = friends_get_friend_user_ids( bp_displayed_user_id() );
$include = implode( ',', $friend_ids );
// Your loop hereRef: https://codex.buddypress.org/developer/loops-reference/the-members-loop/
-
Henry Wright replied to the topic Feature request: Last login in the forum Ideas 10 years ago
There are plugins that can do this. It isn’t necessarily a BuddyPress thing
-
Henry Wright replied to the topic Buddypress Security in the forum Miscellaneous 10 years, 1 month ago
I echo what @shanebp said.
- Load More
@henrywright
Active 1 year, 11 months ago