-
Linda Boyd's profile was updated 9 years, 2 months ago
-
Andrew Tegenkamp replied to the topic Filter Autocomplete IDs? in the forum Creating & Extending 9 years, 2 months ago
Thanks! Thought I was going crazy ๐
-
Renato Alves replied to the topic Random User when /Members is loaded? in the forum How-to & Troubleshooting 9 years, 2 months ago
You can add as much options as you want:
function more_users( $args ) {if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
return $args;
}$args['per_page'] = '50';
$args['type'] = 'random';
return (array) $args;
}
add_filter( 'bp_after_has_members_parse_args', 'more_users', 10… -
metalhead replied to the topic Bypass Email Requirement in the forum Creating & Extending 9 years, 2 months ago
There are other ways to give a user their password if they forgot it. Here’s my remedy for that:
1) I use a plugin called “RegisterIPs.” It records the IP address they signed up with.
2) I’ll display to them after they log on, like this:
“You signed up with this IP address: 56.454.24.454”
“Keep it someplace safe. You’ll need it if you ever…[Read more] -
Andrew Tegenkamp started the topic Filter Autocomplete IDs? in the forum Creating & Extending 9 years, 2 months ago
I am trying to filter autocomplete IDs in Message to just a certain role or member type based on the user’s role or member type. Sometimes they are not friends so I tried setting BP_MESSAGES_AUTOCOMPLETE_ALL and it works great to get everyone but I can’t find how to filter it. I’m trying this just to see what I have to work with but it doesn’t…[Read more]
-
Julian replied to the topic Hide Required BuddyPress Name Field in the forum Miscellaneous 9 years, 2 months ago
haha, never mind ๐ I totally forgot about
.profile .field_1 { display:none; }until now. I just threw it in my child theme’s custom css.Thanks for everything.
-
Julian replied to the topic Hide Required BuddyPress Name Field in the forum Miscellaneous 9 years, 2 months ago
Hey Henry,
Thank you so much! That worked perfectly.
I forgot to mention though that the “Name” profile field still shows up on theer BuddyPress profile page. Do you know any code that I could use to hide that field?
Thanks so much
-
Henry Wright replied to the topic Hide Required BuddyPress Name Field in the forum Miscellaneous 9 years, 2 months ago
You have 2 options. I’d recommend the 2nd:
1: Copy and paste the JavaScript to your my-theme/buddypress/members/register.php template. In this case you’ll need to copy the
<script>tags also.
2: Create a separate file (my-theme/js/script.js for example) and paste the JavaScript into that. In this case you don’t need to copy the<script>tags. If…[Read more] -
Julian started the topic Hide Required BuddyPress Name Field in the forum Miscellaneous 9 years, 2 months ago
Hi there,
I’ve been doing a lot of research into hiding the required name profile field (since my users find it redundant and confusing), however, I can’t seem to find an answer on any topics.
The closest I stumbled upon was this BuddyPress ticket which gives this CSS code:
#register-page p { display: none;}[Read more]
#profile-edit-form .field_1 {… -
Henry Wright replied to the topic Network for private persons and companies in the forum Creating & Extending 9 years, 2 months ago
Is that possible?
Yes but you’ll need to install some plugins and maybe write some custom code to get the functionality you need.
Check out the Getting Started article
-
Henry Wright replied to the topic Odd Characters in Emails in the forum Installing BuddyPress 9 years, 2 months ago
Hey @kdannay
Is BuddyPress actually sending
รขโฌโor is the problem at your client’s end? i.e. your client’s email client can’t display theโcharacter properly? -
Henry Wright replied to the topic Error upgrading to 2.8.x in the forum How-to & Troubleshooting 9 years, 2 months ago
I just spoke with Boone, he suggested a reinstall of BuddyPress is needed because it looks as though your upgrade didn’t complete properly. bp-core-functions.php shouldn’t contain a reference to the
BP_Core_Sort_By_Key_Callbackclass because the class was removed in 2.8.0. -
Slava Abakumov replied to the topic Email all users of updated Forums in the forum Creating & Extending 9 years, 2 months ago
@charleswaud
You can install the plugin by yourself and try. -
Henry Wright replied to the topic Error upgrading to 2.8.x in the forum How-to & Troubleshooting 9 years, 2 months ago
The file (and class) exists in 2.7.4 but not in 2.8.0. I’ll ask over at Slack and report back.
-
Henry Wright replied to the topic Bypass Email Requirement in the forum Creating & Extending 9 years, 2 months ago
Note email addresses are used for password management (resetting a lost password for example). If members use dummy email addresses they risk being locked out of the site if they forget their password.
-
metalhead started the topic Bypass Email Requirement in the forum Creating & Extending 9 years, 2 months ago
Hello,
First, I must mention that I know there have been other threads on this topic. However, I missed the conversation by years, and I need to reopen this discussion.
Someone mentioned that they were able to bypass the wordpress email requirement by editing register.php to make it generate a random email address, insert it into the email…[Read more]
-
Renato Alves replied to the topic Random User when /Members is loaded? in the forum How-to & Troubleshooting 9 years, 2 months ago
You can use the ‘bp_after_has_members_parse_args’ hook to filter for random users adding it to the bp-cuscom.php file.
function random_users( $args ) {if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
return $args;
}$args['type'] = 'random';
return (array) $args;
}
add_filter( 'bp_after_has_members_parse_args', 'random_users', 10… -
Boone Gorges wrote a new post on the site BuddyPress.org 9 years, 2 months ago
BuddyPress 2.8.1 is now available. This maintenance release fixes four bugs, including two regressions in BuddyPress 2.8.0. See the Trac milestone or the official changelog for more details.
Version 2.8.1 is a […]
-
Boone Gorges updated the Version 2.8.1 page, on the BuddyPress Codex 9 years, 2 months ago
Version 2.8.1 is a BuddyPress maintenance release, released on February 22, 2017.
For Version 2.8.1, the database version (bp_db_version in wp_options) was 11105, and the Trac revision was r11445. Read the full […]
-
ash replied to the topic Missing 'Join Group' button? in the forum How-to & Troubleshooting 9 years, 2 months ago
hi – this is what I am trying :
staging.kinsta.com/groups/test/
There is no ‘Join group’ button / option
- Load More