-
Henry Wright replied to the topic Activity updates only available to friends in the forum Creating & Extending 8 years, 6 months ago
Your first stop when customising the activity stream should be bp_parse_args(). Check out this article:
-
Henry Wright replied to the topic Private messaging for bulk recipients in the forum Showcase 8 years, 6 months ago
As far as I know, in order to reply to a specific participant only, they’d need to start a new private message. Unless that’s done, as you pointed out, the reply will go to all participants.
-
Henry Wright replied to the topic It doesn't work you have a friendship request in the forum How-to & Troubleshooting 8 years, 6 months ago
Which theme are you using? Do you see the problem if you activate Twenty Fifteen?
-
Henry Wright replied to the topic review profiles plugin in the forum Installing BuddyPress 8 years, 6 months ago
Try searching the Plugin Directory.
-
Henry Wright replied to the topic Sorting activity stream in the forum Miscellaneous 8 years, 6 months ago
do you have any idea how to use this filter ?
add_filter( 'bp_activity_total_activities_sql', function( $sql, $where_sql, $sort ) {
// Manipulate $sql here.return $sql;
}, 10, 3 ); -
Henry Wright replied to the topic Sort Members in the forum Third Party Plugins 8 years, 6 months ago
Check out
BP_User_Query
search_terms
,meta_key
andmeta_value
could be helpful depending on where you’ve stored your label data. I haven’t tried it, butxprofile_query
might also be useful. -
Henry Wright replied to the topic Modifying members_header_actions in the forum How-to & Troubleshooting 8 years, 6 months ago
OK. So if you open the project in a text editor such as Light Table or Brackets, then hit Ctrl + F, you should see a search box appear which will let you find what you need to.
-
Henry Wright replied to the topic Modifying members_header_actions in the forum How-to & Troubleshooting 8 years, 6 months ago
Do you have files locally on your own computer or are they on a server elsewhere?
-
Henry Wright replied to the topic Modifying members_header_actions in the forum How-to & Troubleshooting 8 years, 6 months ago
Run a search in your code base for
bp_add_friend_button()
. Depending on your theme it could be in quite a few files. -
Henry Wright replied to the topic User can not login – redirected to Home-page in the forum How-to & Troubleshooting 8 years, 6 months ago
Try de-activating all of your plugins. Sometimes a plugin can conflict with the log in process.
-
Henry Wright replied to the topic Avatar of the man and woman in the forum Installing BuddyPress 8 years, 6 months ago
In that case you need to get that value from your database, and then use it inside a function to filter the default image URL.
if ( $value == 'M' ) {
$url = ''; // Set the URL to the male avatar.
} else {
$url = ''; // Set the URL to the female avatar.
}
return $url; -
Henry Wright replied to the topic Modifying members_header_actions in the forum How-to & Troubleshooting 8 years, 6 months ago
remove_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );
should work.Try looking inside your templates to see if the
bp_add_friend_button()
function is used to output the button directly. -
Henry Wright replied to the topic How to change colors of "SAVE CHANGES" button in the forum How-to & Troubleshooting 8 years, 6 months ago
.save {
color: #aaa; // This will change the text colour
background-color: #fff;
}.save is the selector. You can find the selector you need by looking at your button’s class in the page source code. For example:
...
<button class="save"></button>
...A good CSS…[Read more]
-
Henry Wright replied to the topic Latest WP compatibility in the forum Requests & Feedback 8 years, 6 months ago
It should be 100% compatible right now. Can you describe the problem you’re seeing?
-
Henry Wright replied to the topic Avatar of the man and woman in the forum Installing BuddyPress 8 years, 6 months ago
Do you capture gender from your users?
-
Henry Wright replied to the topic Set order members in the search results in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @stefannita
Try asking this question on the plugin’s support forum.
-
Henry Wright replied to the topic [Resolved] How to Hide Admin accounts 2016? in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @semperaye
Unfortunately, CSS isn’t a great solution here. To get this done properly, you will need to do 3 things:
1. Profile
Either implement a redirect or respond with a 404 page not found when an admin profile is visited.
2. Member directory
Use
bp_parse_args()
to filter the loop so that all admins are removed.3. Activity…[Read more]
-
Henry Wright replied to the topic PHP 7.0 compatibility in the forum Installing BuddyPress 8 years, 6 months ago
Do you have the private messages component activated?
-
Henry Wright replied to the topic can you install on a site built with a site builder? in the forum Installing BuddyPress 8 years, 6 months ago
You can’t copy and paste WordPress unfortunately. You’ll need to set up a database and upload the core files then run an install script. Check with your hosting company as a 1-click install might be available.
-
Henry Wright replied to the topic How to change options for user delete the account? in the forum How-to & Troubleshooting 8 years, 6 months ago
Do you mean like a deactivate option? That isn’t available right now in BuddyPress.
- Load More
@henrywright
Active 8 months, 1 week ago