-
Henry Wright replied to the topic Activity date off by one day in the forum How-to & Troubleshooting 9 years, 4 months ago
Does this happen with Kleo disabled? Perhaps try Twenty Fifteen
-
Codieslab replied to the topic Rename Profile Tab Names in the forum How-to & Troubleshooting 9 years, 4 months ago
HelLo Johnny
You need to apply buddypress hooks in functions.php file so you can change tab name.
just for change your language text name:
-
Paul Wong-Gibbs replied to the topic Change Password function inside the Settings page is not working. in the forum How-to & Troubleshooting 9 years, 4 months ago
Are you using W3TC with Object Caching enabled?
-
Paul Gibbs updated the Version 2.7.4 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.7.4 is a BuddyPress security release.
For Version 2.7.4, the database version (bp_db_version in wp_options) was 11105, and the Trac revision was r11326.
Fixes
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.6.3 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.6.3 is a BuddyPress security release.
For Version 2.6.3, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r11327.
Fixes
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.0.5 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.0.5 is a BuddyPress security release.
For Version 2.0.5, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11333.
Fixes:
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.1.3 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.1.3 is a BuddyPress security release.
For Version 2.1.3, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11332.
Fixes:
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.2.5 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.2.5 is a BuddyPress security release.
For Version 2.2.5, the database version (bp_db_version in wp_options) was 9181, and the Trac revision was r11331.
Fixes
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.3.6 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.3.6 is a BuddyPress security release.
For Version 2.3.6, the database version (bp_db_version in wp_options) was 10071, and the Trac revision was r11330.
Fixes
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.4.4 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.4.4 is a BuddyPress security release.
For Version 2.4.4, the database version (bp_db_version in wp_options) was 10071, and the Trac revision was r11329.
Fixes
* Avatars: improve robustness of crop […] -
Paul Gibbs updated the Version 2.5.4 page, on the BuddyPress Codex 9 years, 4 months ago
Version 2.5.4 is a BuddyPress security release.
For Version 2.5.4, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r11328.
Fixes
* Avatars: improve robustness of crop […] -
Henry Wright replied to the topic Add number of new messages to messages in submenu in the forum How-to & Troubleshooting 9 years, 4 months ago
Try
bp_total_unread_messages_count() -
Henry Wright replied to the topic Accidentally deleted Activation page in the forum How-to & Troubleshooting 9 years, 4 months ago
In the WordPress admin area go to Pages and then create the page. Then under BuddyPress you can assign that page as the activation page.
-
John James Jacoby started the topic BuddyPress 2.7.4, and others in the forum Installing BuddyPress 9 years, 4 months ago
-
John James Jacoby wrote a new post on the site BuddyPress.org 9 years, 4 months ago
BuddyPress 2.7.4 is now available, and is a security release & recommended upgrade for all BuddyPress installations. We’ve also ported the code changes in 2.7.4 to all branches back 2.0, and are pushing upd […]
-
Mat replied to the topic Show logged in firstname outside the loop in the forum How-to & Troubleshooting 9 years, 4 months ago
For the record, this works.
<?php $userid = bp_loggedin_user_id(); ?>
<a href="<?php bp_loggedin_user_domain() ?>">Bonjour, <?php bp_get_user_firstname ( bp_get_loggedin_user_fullname ( $userid ) ) ?></a>Hope it could help someone. 🙂
-
Mat replied to the topic Show logged in firstname outside the loop in the forum How-to & Troubleshooting 9 years, 4 months ago
This seems to work :
$userid = bp_loggedin_user_id();
echo bp_get_user_firstname ( bp_get_loggedin_user_fullname ( $userid ) )Is it a correct way to do so ?
Now, what if I want to link this name to the user profile ?
Any help would be much appreciated ! Thanks ! 🙂
-
Mat replied to the topic Show logged in firstname outside the loop in the forum How-to & Troubleshooting 9 years, 4 months ago
With this :
$userid = bp_loggedin_user_id();
echo bp_core_get_user_displayname( $userid )I can have the full name. Now I try to find the user firstname.
-
Mat started the topic Show logged in firstname outside the loop in the forum How-to & Troubleshooting 9 years, 4 months ago
Hello,
I’m using WP 4.7 and BuddyPress 2.7.3.
I’m trying to display the username of the current logged in user somewhere in my navigation, outside the BuddyPress loop, before
<div id=buddypress></div>.More specifically, I want to use
bp_get_user_firstname.Can you please give me some tips to do so ?
Thanks !
Mat
-
Henry Wright replied to the topic Get all xprofile select field options in the forum How-to & Troubleshooting 9 years, 4 months ago
Yes,
xprofile_get_field_id_from_name()will get you the field ID 🙂 - Load More