Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Masoud

    Masoud replied to the topic help in writing a function? hooks? actions? in the forum How-to & Troubleshooting 9 years, 11 months ago

    hi. tnx for your answer.
    tnx for mention the use of ‘code’. i will do it in future.
    in these past 2days i’m trying to do what you said in different ways. but i keep seeing error.
    so i come back here.
    sorry i dont know a lot about coding.. 🙁
    i’ve tried many codes. some of these codes:

    first:
    function masoud_core_no_access( $r…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic 404 for Customizing Labels, Messages, and URLs tutorial for BP in the forum Installing BuddyPress 9 years, 11 months ago

    Right, the image had a ton of broken links so I unpublished it. I don’t personally have any time to fix the content, so we can either delete the page, or someone can edit it to make it work without content.

  • Profile picture of PinkishHue

    PinkishHue replied to the topic How to get username? in the forum How-to & Troubleshooting 9 years, 11 months ago

    Try <?php bp_displayed_user_username(); ?>

  • Profile picture of Onlineplaner

    Onlineplaner started the topic Admin approval for profile changes in the forum Requests & Feedback 9 years, 11 months ago

    Hi,

    I have been looking for a plugin or a way to allow the admin to either approve or dismiss changes that have been made to a profile by the user.

    In a good world this plugin would send an email to the adminitrator of the group or whatever email address has been entered with the old fields, the new fields and two links – one to approve and one…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic How to change colors of "SAVE CHANGES" button in the forum How-to & Troubleshooting 9 years, 11 months ago

    Sorry for the delay. Looking at your markup, #signup_submit looks to be your selector. Glad you got this sorted 🙂

  • Profile picture of Henry Wright

    Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 9 years, 11 months ago

    display: none; wasn’t the best solution. Glad you found a better way 🙂

  • Profile picture of John James Jacoby

    John James Jacoby replied to the topic This malicious behavior of BuddyPress is a serious security risk in the forum How-to & Troubleshooting 9 years, 11 months ago

    Thanks for the post, and thank you everyone that chimed in to alert the OP about the protocol for security concerns. Understanding it’s possible there’s a communication gap here, this topic does also read (to my eyes) as condescending & inflammatory, which is honestly not going to yield a very positive conversation. I think y’all did a great job…[Read more]

  • 's profile was updated 9 years, 11 months ago

    @tecnotutos3654

    View Profile
  • Profile picture of INTP5

    INTP5's profile was updated 9 years, 11 months ago

    INTP5

    @intp5

    View Profile
  • Profile picture of Henry Wright

    Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 9 years, 11 months ago

    In that case you could embed some CSS into the <head> section using the wp_head hook.

    Ref: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Email Notifications on Group Activity in the forum Requests & Feedback 9 years, 11 months ago

    Is there a formal process for requesting this feature?

    Yes. The formal place to request features is Trac.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 9 years, 11 months ago

    Just a thought, have you considered a CSS solution?

    .tab {
    display: none;
    }

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Allow group moderators to remove members in the forum How-to & Troubleshooting 9 years, 11 months ago

    Inside groups_screen_group_admin_manage_members() before the banning and removal operations, there’s a check which asks if the logged-in user is an admin:

    if ( ! bp_is_item_admin() )
    return false;

    So as far as I know, it isn’t possible to give mods that privilege.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Activity updates only available to friends in the forum Creating & Extending 9 years, 11 months ago

    Hi @handyandywilson

    Your first stop when customising the activity stream should be bp_parse_args(). Check out this article:

    Using bp_parse_args() to filter BuddyPress template loops

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Users cannot register since update 2.53 in the forum How-to & Troubleshooting 9 years, 11 months ago

    If you’re familiar with MySQL, and know how to do this, are you able to look in your site’s wp_users and wp_signups table, and then try to create a new account, and see if you can find it in those tables?

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Users cannot register since update 2.53 in the forum How-to & Troubleshooting 9 years, 11 months ago

    Did anything else update at the same time? Anything?

    2.5.3 contained changes to email implementation, and a security fix regarding user activation. The latter is most likely cause.

    What theme are you using? Do you have a custom registration template (did you make one)? What other plugins do you have running? Are you on multisite or regular…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic This malicious behavior of BuddyPress is a serious security risk in the forum How-to & Troubleshooting 9 years, 11 months ago

    Thank you for getting in contact with the BuddyPress team. Some of the attitudes displayed in this discussion have not been respectful and are not conducive to a productive conversation, so I am going to close this topic for that reason only. If anyone has questions about this moderation action and is prepared to discuss them civily, you can find…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Menu translation in the forum How-to & Troubleshooting 9 years, 11 months ago

    Hi @paulrooms

    The Italian translation of BuddyPress is up to date: https://translate.wordpress.org/locale/it/default/wp-plugins/buddypress

    For the menu items (at least what I think you mean), you’ll need to go into wp-admin > Pages > Edit, and just rename/translate the pages yourself.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic email notification activity stream in the forum How-to & Troubleshooting 9 years, 11 months ago

    @alexdex, there’s no point in shouting. As @sharmavishal and @danbp have said, you’d need to develop a custom notification and to do that, you’ll need a basic understanding of PHP and a familiarity with WordPress’ APIs for plugin development.

    You’ll be lucky to find someone with enough time and desire to figure this out for your free, to be…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Cover photo not showing in the forum How-to & Troubleshooting 9 years, 11 months ago

    @nnyorker Are you using a custom theme?

    I think certain types of custom themes have to opt-in for cover image support. @imath will know 🙂

  • 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