Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Henry Wright

    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

  • Profile picture of Codieslab

    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:

    Customizing Labels, Messages, and URLs

  • Profile picture of Paul Wong-Gibbs

    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?

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Paul Wong-Gibbs

    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 […]

  • Profile picture of Henry Wright

    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()

  • Profile picture of Henry Wright

    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.

  • Profile picture of John James Jacoby

    John James Jacoby started the topic BuddyPress 2.7.4, and others in the forum Installing BuddyPress 9 years, 4 months ago

    BuddyPress 2.7.4 – Security Release

  • Profile picture of John James Jacoby

    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 […]

  • Profile picture of Mat

    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. 🙂

  • Profile picture of Mat

    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 ! 🙂

  • Profile picture of Mat

    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.

  • Profile picture of Mat

    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

  • Profile picture of Henry Wright

    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

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In