-
Paul Wong-Gibbs replied to the topic Display Name not used fro bbPress, inside a BuddyPress installation in the forum How-to & Troubleshooting 10 years, 1 month ago
This would need a change in the bbPress templates. I don’t know how useful the bbPress support forums are, but you could try leaving a message at http://bbpress.org
-
Paul Wong-Gibbs replied to the topic Complete chat system??? in the forum How-to & Troubleshooting 10 years, 1 month ago
I’m not aware of any that integrate into BuddyPress.
-
Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago
Can you try this?
I’ve removed the
$usercheck which was unnecessary in this case. I also didn’t add a priority or the number of args passed (but again those are unnecessary so I’ve removed them).add_action( 'swpm_login', function() {
bp_core_redirect( bp_loggedin_user_domain() );
} ); -
Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago
So on successful login it looks as though Simple Membership’s
swpm_loginhook runs. With the Simple Membership plugin activated, try adding this to your theme’s functions.php file:add_action( 'swpm_login', function( $user, $pass, $remember ) {[Read more]
if ( ! $user || is_wp_error( $user ) ) {
return;
}
bp_core_redirect(… -
Henry Wright replied to the topic Undefined index. in the forum How-to & Troubleshooting 10 years, 1 month ago
Hi ma3ry
I know the path points to a BuddyPress file, but this notice is likely caused by a plugin you have activated. It basically means an array key
ris being used, but therkey doesn’t actually exist in the array (for whatever reason).Try deactivating your plugins 1 by 1 to see which might be causing the notice.
-
Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago
Simple Membership may use a different action hook on login. I’m guessing the redirect plugin uses the standard hook provided by BuddyPress. Do you have a link to Simple Membership?
-
Slava Abakumov started the topic Very strange BP Emails behaviour in the forum How-to & Troubleshooting 10 years, 1 month ago
I’m using Sendgrid plugin to send emails. It replaces the
wp_mail()function included with WordPress. Also BuddyPress 2.5.2 and WordPress 4.4.2.In the BuddyPress source code I found a filter
'bp_email_use_wp_mail', which skips BP’s email handling and instead sends everything towp_mail()ifwp_mail_content_type()has been configured for HTML, or…[Read more] -
Naomi started the topic Show additional fields on member profile header in the forum How-to & Troubleshooting 10 years, 1 month ago
I’m running WP 4.4.2 and Buddypress 2.5.2 on my site http://www.charlottemasoneducation.org
I’d like to add the member’s city and state to the member profile page right where it says when their last activity was.
I have added these fields in a theme-my-login-custom.php file in order for them to be part of the registration process to my private site…[Read more]
-
Henry Wright replied to the topic buddypress members search errors in the forum How-to & Troubleshooting 10 years, 1 month ago
This might not fix the problem but have you tried BP Profile Search?
-
riseUp replied to the topic How to link the avatar picture to his/her profile page in the forum How-to & Troubleshooting 10 years, 1 month ago
Hi @shanebp,
I’m still trying to figure this out after a week of trial and error. Let’s step back a little for a second if we may…
So, on http://www.ymphony.com, when a user clicks on a post’s avatar, I’d like the site to direct the user to the avatar’s profile page. The profile page is created by Buddy Press.
It doesn’t seem like the following is…[Read more]
-
Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago
I did a bit of digging for you. The filter you need to use is
bp_title_parts. Your hooked function will be passed an array of the BuddyPress title parts. -
Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago
For some reason I was looking at
document_title_separatorwhich is why I thought your function was passed a string. You are right,$titleis an array. Sorry about that 🙂 -
Goldstein and Bashner's profile was updated 10 years, 1 month ago
-
Henry Wright's profile was updated 10 years, 1 month ago
-
Henry Wright replied to the topic $bp global object deprecated in the forum Requests & Feedback 10 years, 1 month ago
You can still use
global $bp;at the beginning of your functions to access the global’s data. But yes,buddypress()is a far better way. You should be able to update the Codex yourself? If that’s not the case, let me know 🙂 -
Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago
Also,
$titleshould be a string, not an array. So doing stuff like this$title['title']won’t work. -
Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago
so I guess BuddyPress is bypassing or overriding this filter
If that were the case, you can increase the priority:
add_filter('document_title_parts', 'custom_groups_title', 20);But I don’t think that’s the problem in this case. Maybe check if
bp_is_group()andbp_current_action()are working as you expect them to be.var_dump( $some_value );…[Read more] -
Eva's profile was updated 10 years, 1 month ago
-
Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago
The edit form is in edit.php. You will need to add that to the page but I don’t think it will be as easy as copying and pasting because the default form processing may depend on the current URL.
-
Brandon Allen replied to the topic filter for wp_mail_from stops working with activated buddypress. in the forum How-to & Troubleshooting 10 years, 1 month ago
For anyone using the
wp_mail_fromandwp_mail_from_namefilters, commonly used in SMTP plugins, I’ve created a plugin that lets those filters work with BP emails.https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/
Hope this helps someone!
- Load More