-
Henry Wright replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 1 month ago
These are fantastic, Slava, keep them coming!
-
Slava Abakumov replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 1 month ago
Just sent a new issue!
BuddyPress Newsletter #25 – BP 2.9 schedule, new BP.org redesign ideas, promo etc
-
Lazma Cream's profile was updated 9 years, 1 month ago
-
Siddharth started the topic BP 2.8.2 – Activity Problem in the forum How-to & Troubleshooting 9 years, 2 months ago
hello support team,
I’m facing a problem after updating buddypress to 2.8.2. Once I submit any text into activity stream it shows the website in an IFRAME, see the screenshot below plz. Can provide login if that helps.
Screenshot: http://nimb.ws/ufhcbA
Also when I’m trying to upload an image into activity stream, or trying to upload an image in…[Read more]
-
Muhammad Kashif replied to the topic Profile matching feature in the forum How-to & Troubleshooting 9 years, 2 months ago
Currently it does not allow non-identical matching.
-
Henry Wright replied to the topic Change "Name" Field to First & Last Name in the forum Creating & Extending 9 years, 2 months ago
There sure is: xprofile_field_after_save
Let me know if you need anything else.
-
Henry Wright updated the bp_core_get_userlink() page, on the BuddyPress Codex 9 years, 2 months ago
Description
Returns a HTML formatted link for a user with the user’s full name as the link text.Top
UsageTop
Parameters
$user_id
(integer) User ID to check.$no_anchor
(bool) Disable URL and […] -
Henry Wright replied to the topic Change "Name" Field to First & Last Name in the forum Creating & Extending 9 years, 2 months ago
The problem with bp_core_signup_user is it’s executed during registration only. If a member decides to change their “Name” at a later date, I don’t think the corresponding WordPress fields will be updated.
-
Henry Wright replied to the topic Change "Name" Field to First & Last Name in the forum Creating & Extending 9 years, 2 months ago
Thanks for the reply, so you’re saying I should rename this field to “First Name” and create a secondary field for “Last Name” ?
That’s one approach you could take.
If there is nothing special about the field, is there a hook or filter where I can replace the field entirely and map them to first / last name fields in WordPress?
I think not…[Read more]
-
AiratTop replied to the topic Trying to get property of non-object in the forum How-to & Troubleshooting 9 years, 2 months ago
PHP Notice: Trying to get property of non-object in /site_path/wp-content/plugins/buddypress/bp-groups/bp-groups-template.php on line 534 -
Shmoo replied to the topic Is it profile or members conditional tags? in the forum How-to & Troubleshooting 9 years, 2 months ago
Yes, bp_is_user() does the job. Thanks.
-
Henry Wright replied to the topic Change "Name" Field to First & Last Name in the forum Creating & Extending 9 years, 2 months ago
There isn’t anything special about the “Name” field aside from it being required. You could treat the field as the member’s first name and set up a second field labelled “Surname”?
-
southcolors.in's profile was updated 9 years, 2 months ago
-
Henry Wright's profile was updated 9 years, 2 months ago
-
Edith Curtis's profile was updated 9 years, 2 months ago
-
Henry Wright replied to the topic Is it profile or members conditional tags? in the forum How-to & Troubleshooting 9 years, 2 months ago
I’ve just removed
bp_is_member()from the Template Tag Reference so there’s no confusion going forward: -
Henry Wright updated the Template Tag Reference page, on the BuddyPress Codex 9 years, 2 months ago
This page is currently undergoing review and updating. References marked with ? have been reviewed for current accuracy.
General Template Tags
bp_get_loggedin_user_nav()Uses the $bp->bp_nav global to render […] -
Shmoo started the topic Is it profile or members conditional tags? in the forum How-to & Troubleshooting 9 years, 2 months ago
Hello guys.
I’m trying to hijack this menu and place it inside my header.php file.

This menu gets echoed via the bp_get_displayed_user_nav() function that is only visible on user profile related pages so I need some sort of conditional PHP tag to prevent it from showing up in my header section when I’m not viewing one of those profile related…[Read more]
-
Henry Wright replied to the topic Change confirmation emails from wordpress@yourdomain.com in the forum How-to & Troubleshooting 9 years, 2 months ago
Often you’ll also want to change the from “name”. That can be done with:
add_filter( 'wp_mail_from_name', function( $name ) {
return 'Jam Session';
} ); -
Henry Wright replied to the topic Change confirmation emails from wordpress@yourdomain.com in the forum How-to & Troubleshooting 9 years, 2 months ago
Try the wp_mail_from filter:
add_filter( 'wp_mail_from', function( $email ) {
return 'admin@jamsession.dk';
} ); - Load More