Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of David Cavins

    David Cavins started the topic BuddyPress 2.5.0-beta1 in the forum Miscellaneous 10 years, 3 months ago

    BuddyPress 2.5.0 Beta 1 is now available for testing. You can download the 2.5.0-beta1 zip or get a copy via our Subversion repository. We’d love to have your feedback and testing help.

    Read more about the beta here: https://buddypress.org/2016/02/buddypress-2-5-0-beta-1/

    Thanks for your testing help!

    —-

    Please do not report issues in this t…[Read more]

  • Profile picture of jhvalet

    jhvalet's profile was updated 10 years, 3 months ago

    jhvalet

    @jhvaletaolcom

    View Profile
  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic New Menu Item return 404 in the forum How-to & Troubleshooting 10 years, 3 months ago

    You messed the code. It should be like this: http://pastebin.com/Beb0tNBk

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic How to disable BuddyPress register page in the forum How-to & Troubleshooting 10 years, 3 months ago

    Created a ticket: https://buddypress.trac.wordpress.org/ticket/6885

    Found a solution, though:

    function edragonxx_rewrite_slug( $slug ) {
    return 'wp-login.php?action=register';
    }

    add_filter( 'bp_get_signup_slug', 'edragonxx_rewrite_slug' );

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic How to disable BuddyPress register page in the forum How-to & Troubleshooting 10 years, 3 months ago

    Try put this code into bp-custom.php or function.php of your theme:

    remove_filter( 'register_url', 'bp_get_signup_page' );

    UPD: this solution doesn’t work.

    This doesn’t work either:

    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Comments in the pages of the groups do not update automatically in the forum Showcase 10 years, 3 months ago

    Do you have any cache plugins activated? Try deactivating it first and check group’s page.
    Deactivate all plugins except BuddyPress – does the issue still remain?

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Best/Trusted 3rd Party Poll Extensions in the forum Third Party Plugins 10 years, 3 months ago

    Try https://polldaddy.com/ (an Automattic service/plugin) – free and paid versions available. No specific BuddyPress integration. Actually, there are a lot of such plugins in repository.

    BuddyPress Social Polling – paid, haven’t use it.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Display WP Username by default without Plugin in the forum How-to & Troubleshooting 10 years, 3 months ago

    If you don’t find a custom solution to this I just wanted to point out that plugin is built by @r-a-y, one of the BuddyPress core developers. I expect it should still work fine. As always, try it on a test install before adding to your live site.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic tasks in the forum Creating & Extending 10 years, 3 months ago

    Right, I see. As I say, fixing the issue might be far easier for you than building from scratch?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic How to redirect after registration? in the forum How-to & Troubleshooting 10 years, 3 months ago

    Can you paste the code you’re using here?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic tasks in the forum Creating & Extending 10 years, 3 months ago

    To Do List member accomplished this nicely until the shortcodes decided not to display.

    It might be easier fixing this issue rather than building a new solution. Have you told the plugin author about the problem? Maybe they can publish a fix.

  • Profile picture of Ryan Hellyer

    Ryan Hellyer replied to the topic bp_activity_add() creating double activities in the forum Creating & Extending 10 years, 3 months ago

    Thanks for your assistance 🙂 I now have the code working.

    I needed to make a few changes to the code you provided, which I outlined in the gist.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Just a little advice please in the forum Showcase 10 years, 3 months ago

    My approach is usually start by installing WordPress and then install and activate the BuddyPress plugin. From there the next step is to choose a theme. Here you will have both free and paid options. You’ll find some good free themes here. Once you’re done with your website’s look and feel, begin to add functionality such as an ecommerce plugin…[Read more]

  • Profile picture of Mark

    Mark replied to the topic Display something different to male and female members based off xprofile values in the forum How-to & Troubleshooting 10 years, 3 months ago

    Not sure what I was going for before but using the below code seems to do the trick, and it outputs things in a more efficient manner. If anybody knows an even cleaner way to do this, please let me know.

    <?php
    global $bp;
    $args = array( 'field' => 'Gender', 'user_id' => bp_loggedin_user_id() );
    $gender = bp_get_profile_field_data($args);

    if (…[Read more]

  • Profile picture of Mark

    Mark started the topic Display something different to male and female members based off xprofile values in the forum How-to & Troubleshooting 10 years, 3 months ago

    Hi,

    I’m trying to display something different to male and female members on my site based off their selected xprofile value (created a gender field with male and female values) but can’t figure it out. I pieced the below code together after Googling around for awhile. I thought it would work but it simply echos ‘male’ twice on the page instead of…[Read more]

  • Profile picture of Mark

    Mark replied to the topic Need help combining bp_has_members() values to customize members loop in the forum How-to & Troubleshooting 10 years, 3 months ago

    Hi @slaffik,

    Just got home and did some additional testing. It is working! This ticket can be resolved. Thank you so much for all your help, really appreciate it.

    Best Regards,
    Mark

  • Profile picture of Mark

    Mark replied to the topic Need help combining bp_has_members() values to customize members loop in the forum How-to & Troubleshooting 10 years, 3 months ago

    Hi @slaffik,

    Replacing $custom_ids_str = 'include=' . implode(",", $custom_ids); with $custom_ids_str = implode(",", $custom_ids); or return $custom_ids; seems to have resolved my issue! I have to run out the door so I plan on doing more testing when I get home, but so far I believe it is working. After I get home and do some thorough testing I…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Categories in the Activity in the forum How-to & Troubleshooting 10 years, 3 months ago

    This isn’t possible by default. You will need to add either a plugin, if one is available, or some custom code.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic text editor in the group or other pages in the forum How-to & Troubleshooting 10 years, 3 months ago

    Check out TinyMCE.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic User does not show up in BP-Members search in the forum How-to & Troubleshooting 10 years, 3 months ago

    The user most likely hasn’t logged in yet. You will find once a user has logged in for the first time, they will become active and show up in the members directory.

  • 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