Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Terence Hackett

    Terence Hackett's profile was updated 9 years, 2 months ago

    Terence Hackett

    @terencehackett

    View Profile
  • Profile picture of Qode Media

    Qode Media's profile was updated 9 years, 2 months ago

    Qode Media

    @qodemedia

    View Profile
  • Profile picture of Hugo Ashmore

    Hugo Ashmore replied to the topic template overload isn't working as expected in the forum How-to & Troubleshooting 9 years, 2 months ago

    @kalico

    I can do that. However, I haven’t found any documentation to that effect, and it seems to be much more complicated than the template hierarchy documentation implies:

    Hmm I was 99.999% sure I had or we (r-a-y & I wrote the two main codex pages for template hierarchy) had explicitly mentioned this point about full templates but I c…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 2 months ago

    Just sent a new issue!

    BuddyPress Newsletter – #24 – BP security release, Community Hosting, BuddyApp Theme, BP with WooCommerce etc

    https://www.getrevue.co/profile/bpmail/issues/24-bp-security-release-community-hosting-buddyapp-theme-bp-with-woocommerce-etc-48208

  • Profile picture of McCage

    McCage replied to the topic Username exposed on the profil in the forum Requests & Feedback 9 years, 2 months ago

    I do not use Twitter. When I register for a WordPress website, I do not realize that the username will be revealed in BuddyPress. I prefer to see my username as part of the login secret and I think many of my BuddyPress friends will feel the same. I would like to see a setting that makes it possible to use the real name or the nickname on screen…[Read more]

  • Profile picture of Mozart Moraes

    Mozart Moraes started the topic Xprofile field – Dropdown list in the forum Creating & Extending 9 years, 2 months ago

    Hi all

    I would like to set in the dropdown list xprofile field a big amount of value to the field. Is it possible? Is there some plugin?

    For exemple:
    I created a field “company” and I have a list of all the company that the user can select (or if possible when user type some word, the field search suggest the company from the list value).
    Then,…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Problem when i upload avatar in registration page. in the forum Third Party Plugins 9 years, 2 months ago

    Hi @chavodbharat

    No need to edit the core file. The bp_attachments_current_user_can filter can be used here.

    add_filter( 'bp_attachments_current_user_can', function( $can, $capability ) {
    if ( 'edit_avatar' !== $capability ) {
    return $can;
    }
    // This will let all users upload an avatar (not just logged in members).
    $can =…
    [Read more]

  • Profile picture of Paresh Radadiya

    Paresh Radadiya started the topic Reset BuddyPress WP_Query to single post type page in the forum How-to & Troubleshooting 9 years, 2 months ago

    I’m trying to get group navigation menu items to show on single cutom post type page but am completely unsure how to approach the problem.

    I’ve built my solution by setting current component and current group manually to be able to get group navigation tab items.

    function boss_set_current_groups() {
    global $bp;

    if ( is_…[Read more]

  • Profile picture of Muhammad Kashif

    Muhammad Kashif replied to the topic How do I?? in the forum How-to & Troubleshooting 9 years, 2 months ago

    you mean to see forums from groups the user is member of ?

  • Profile picture of Muhammad Kashif

    Muhammad Kashif replied to the topic Search member's match profile on basis of other member profile field values in the forum Installing BuddyPress 9 years, 2 months ago

    this may be a good start https://wordpress.org/plugins/match-me-for-buddypress/

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago

    How do I do that on the server side?

    You’d use the modulo operator, like in my example above.

    Did this work for you?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago

    Ah, the “load more”. I forgot about that. In order to load your items (and activities) you’ll need to make an ajax request. In your server side processing script you can use the modulo operator to insert your items at every 5th iteration.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago

    I’ve used Pastebin because there’s quite a lot of code to paste here. Notice my amendments on lines 34, 36, 37, 38 and 58.

    Let me know if it works for you.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago

    You’ll need to replace // Loop start and // Loop end with your actual loop. If you want to paste your loop here I’ll try to take a look

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago

    You can use the modulo arithmetic operator. Here’s an example:

    $counter = 1;
    // Loop start
    if ( 0 === $counter % 5 ) {
    // Do something here.
    }
    $counter++
    // Loop end

  • Profile picture of Toni

    Toni replied to the topic Registration page does not appear in the forum How-to & Troubleshooting 9 years, 2 months ago

    Oh wow! Me too. Thank you for the question and answer.

  • Profile picture of Boone Gorges

    Boone Gorges wrote a new post on the site BuddyPress.org 9 years, 2 months ago

    BuddyPress 2.8.2 is now available. This is a security release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.

    BuddyPress 2.8.1 and earlier versions were affected by the following […]

  • Profile picture of Boone Gorges

    Boone Gorges updated the Version 2.0.6 page, on the BuddyPress Codex 9 years, 2 months ago

    Version 2.0.6 is a BuddyPress security release.

    For Version 2.0.6, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11507.

    Fixes:

    Improved nonce protection for some […]

  • Profile picture of Boone Gorges

    Boone Gorges updated the Version 2.1.4 page, on the BuddyPress Codex 9 years, 2 months ago

    Version 2.0.6 is a BuddyPress security release.

    For Version 2.0.6, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11506.

    Fixes:

    Improved nonce protection for some […]

  • Profile picture of Boone Gorges

    Boone Gorges updated the Version 2.2.6 page, on the BuddyPress Codex 9 years, 2 months ago

    Version 2.2.6 is a BuddyPress security release.

    For Version 2.2.6, the database version (bp_db_version in wp_options) was 9181, and the Trac revision was r11505.

    Fixes:

    Improved nonce protection for some […]

  • 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