-
Raphael's profile was updated 10 years ago
-
Henry Wright replied to the topic Modifying members_header_actions in the forum How-to & Troubleshooting 10 years 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 10 years 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 10 years 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 10 years 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 10 years 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 10 years 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 10 years 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]
-
Paul Wong-Gibbs replied to the topic @mention autosuggest in visual editor in the forum How-to & Troubleshooting 10 years ago
The change reported in https://buddypress.trac.wordpress.org/ticket/6972 has been added to BuddyPress trunk, and will be included in BP 2.6.
-
Henry Wright replied to the topic Latest WP compatibility in the forum Requests & Feedback 10 years 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 10 years 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 10 years ago
Hi @stefannita
Try asking this question on the plugin’s support forum.
-
Jot replied to the topic No validation mails are sent in the forum How-to & Troubleshooting 10 years ago
I solved the problem. I leave the solution for some users encounter the same problem.
Uninstall the plugin WP-SMTP and proceed to the installation of Postman SMTP plugin.
the problem is solved and post activation of new users are sent correctly. -
Jot started the topic No validation mails are sent in the forum How-to & Troubleshooting 10 years ago
Goodnight. Since the last update, buddypress not send emails validating new user accounts. I checked the plug smtp.wordpress and working properly. The problem occurs at the time of registration of a new user.
-
Jot replied to the topic not receiving account confirmation email in the forum Installing BuddyPress 10 years ago
Goodnight. Since the last update, buddypress not send emails validating new user accounts. I checked the plug smtp.wordpress and working properly. The problem occurs at the time of registration of a new user.
-
Maya Singh's profile was updated 10 years ago
-
Henry Wright replied to the topic [Resolved] How to Hide Admin accounts 2016? in the forum How-to & Troubleshooting 10 years 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 10 years 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 10 years 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.
-
vaughancavca replied to the topic Removing options for private and hidden groups in the forum How-to & Troubleshooting 10 years ago
I had a go at making a small change, and it didn’t seem to do anything.
- Load More