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 Custom Profile Fields in the forum How-to & Troubleshooting 10 years, 7 months ago

    Yes. Check out the WordPress Custom Fields article.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Exclude groups from get_total_group_count in the forum Showcase 10 years, 7 months ago

    You can use the bp_get_total_group_count_for_user filter. For example:

    function my_func( $count, $user_id ) {
    // Do something with $count, using $user_id if you wish.
    return $count;
    }
    add_filter( 'bp_get_total_group_count_for_user', 'my_func', 10, 2 );

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Re-Code BuddyPress to use Custom Post Types in the forum Requests & Feedback 10 years, 7 months ago

    Can BuddyPress be re-coded to use custom post types?

    Yes, but not very easily. An almost complete re-write of the project would be needed.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Script Error Issues in the forum How-to & Troubleshooting 10 years, 7 months ago

    These all boil down to invalid arguments being supplied to various functions. The problem could be related to the same variable not being set properly but some investigation into your set-up would be needed.

  • Profile picture of koaruli gkoal

    koaruli gkoal's profile was updated 10 years, 7 months ago

    koaruli gkoal

    @koaruligkoal

    View Profile
  • Profile picture of Henry Wright

    Henry Wright replied to the topic Users not able to view the members page in the forum How-to & Troubleshooting 10 years, 7 months ago

    /members/ should be a perfectly acceptable slug to use. There must be a conflict somewhere. Likely some custom code or a plugin.

  • Profile picture of paul-burwell

    paul-burwell started the topic Hide Course Discussion button in the forum How-to & Troubleshooting 10 years, 7 months ago

    Hi,

    We are using BuddyPress along with LearnDash.

    WordPress ver 4.3.1
    BuddyPress ver 2.2.3
    BuddyPress for LearnDash ver 1.0.4
    LearnDash ver 2.1.1

    For each class a user is registered in, a Course Discussion button appears for each lesson and topic. I want to make them completely disappear. How can I accomplish this?

    Thanks in advance,

    Paul

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Users not able to view the members page in the forum How-to & Troubleshooting 10 years, 7 months ago

    Do you have any plugins activated aside from BuddyPress?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic business page in the forum Third Party Plugins 10 years, 7 months ago

    If you can think of business pages as “groups” then BuddyPress comes with that functionality. You just need to enable the Groups component and your members will be able to create and invite more members to join the group.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic will the buddypress be compatible with php7? in the forum How-to & Troubleshooting 10 years, 7 months ago

    It looks as though BuddyPress has got PHP 7 in the bag 🙂

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic will the buddypress be compatible with php7? in the forum How-to & Troubleshooting 10 years, 7 months ago

    Hi

    We’ve been testing against PHP7 nightly releases for a long time. It helps that our PHP is newer than most of WordPress’, so we have less really old stuff to migrate.

    You can view our test coverage on https://travis-ci.org/buddypress/BuddyPress/ (“PHP: nightly” is PHP7), as you can see, there’s currently a failure with one test that we need…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic will the buddypress be compatible with php7? in the forum How-to & Troubleshooting 10 years, 7 months ago

    Good question! This is likely to being looked at by the core team.

    See this post which describes what is being done by the WordPress core team: https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/

    My guess is the BuddyPress core team are doing something like that. Maybe @djpaul can add something here?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic I want accept and reject button functionality on notification section in the forum Installing BuddyPress 10 years, 7 months ago

    i am missing 22and this is friend id. so please solve my problem.

    Are you using bp_friend_accept_request_link() outside of the loop? That might be the reason you’re not getting the friendship ID.

    Inside bp_friend_accept_request_link(), friends_get_friendship_id() is used to get the ID. This function accepts 2 arguments, the first is the ID of a…[Read more]

  • Profile picture of alfiel eon

    alfiel eon's profile was updated 10 years, 7 months ago

    alfiel eon

    @alfieleon5

    View Profile
  • Profile picture of @mercime

    @mercime replied to the topic Stalking-Admin View PM? in the forum How-to & Troubleshooting 10 years, 7 months ago

    @bfreed As super/site admin, you should be able to view all the undeleted sent/received messages of any/all your members from the frontend of your site. Why do you want to use FTP or phpmyadmin instead?

  • Profile picture of @mercime

    @mercime replied to the topic Members Page not Loading! in the forum How-to & Troubleshooting 10 years, 7 months ago

    @wecreatehype Have you done any basic troubleshooting like deactivating other plugins except BuddyPress and changing to the WP default theme? Also, do provide more information about your installation so we won’t be chasing ghosts. https://buddypress.org/support/topic/when-asking-for-support-2/

  • Profile picture of @mercime

    @mercime replied to the topic Converting BBPress to BuddyPress in the forum Creating & Extending 10 years, 7 months ago

    I have read many stories about converting BuddyPress to BBPress format

    @netentry Just to clarify that the only converting we ever did was to import content from the very old stand-alone bbPress 1.x.x versions included in very old BuddyPress installations into the bbPress 2.x.x plugin a long while back. That’s it. BuddyPress itself cannot be…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic List or grid format for members or groups directory in the forum Ideas 10 years, 7 months ago

    This could quite easily be theme functionality rather than something that is added to core.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Best Theme for Busy Community? in the forum Creating & Extending 10 years, 7 months ago

    Hey @wecreatehype

    Feel free to show off your community in the Your BuddyPress forum. It’ll be great to see a live version of Boss “in the wild”.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic BP vs Theme conflict, page blank in the forum How-to & Troubleshooting 10 years, 7 months ago

    500 is a very general error. Try the following:

    Clear your browser cache
    Delete cookies
    Remove all custom code from functions.php or bp-custom.php
    Activate the TwentyFifteen theme
    Disable all plugins
    Check your .htaccess file for errors

    The problem may also result from a file or folder permissions error.

    In truth, 500 errors are…[Read more]

  • 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