Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Member search into group does not work before filter it in the forum How-to & Troubleshooting 8 years, 5 months ago

    What theme are you using? I wonder if the JS that you’re using is out of sync with the search template.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Armember badges in the forum Third Party Plugins 8 years, 5 months ago

    I don’t have access to the proprietary ARMember plugin, so I can’t say anything about that.

    Here’s one way to show arbitrary content in a BP user’s profile header:


    add_action( 'bp_before_member_header_meta', function() {
    $user_id = bp_displayed_user_id();
    echo 'Here is the badge for user ' . $user_id;
    } );

    You’ll need to use the $user_id…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Issue with Buddypress Group RSS feeds in the forum How-to & Troubleshooting 8 years, 5 months ago

    Glad you tracked down the error – leading spaces are a huge headache in XML/RSS documents.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Can’t upload avatar image under 451px in the forum How-to & Troubleshooting 8 years, 5 months ago

    Whoa, this is a pretty obscure problem. Thank you very much for following up with your solution.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic How NOT to redirect users after login. in the forum How-to & Troubleshooting 8 years, 5 months ago

    It looks, at a glance, like the LH Private BuddyPress plugin ought to be doing what you’re asking for. https://plugins.trac.wordpress.org/browser/lh-private-buddypress/trunk/lh-private-buddypress.php#L101

    If it’s not working, it’s either because of an error in the plugin logic, or because something on your server or WP setup is interfering with…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 8 years, 5 months ago

    Looking more closely at your styles, the problem might be the width of your #item-meta. Remove the margin-top declaration you entered before, and try this instead:


    #buddypress div#item-header div#item-meta {
    width: 200px;
    }

    Your next step is to start getting familiar with CSS :-D…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic How do I make the comment button read only in the activity stream? in the forum How-to & Troubleshooting 8 years, 5 months ago

    What theme are you using? It’s possible that this problem is specific to the theme. Try on a default WordPress theme like Twenty Sixteen to be sure.

    Can you share a screenshot of the “comment box” and the “reply box”? It’s unclear from your questions whether you’re talking about textareas or about buttons. Also, BP doesn’t have separate Comment…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Email confirmation after changing admin email in the forum How-to & Troubleshooting 8 years, 5 months ago

    Hi @aubreyw – The email should show up immediately. If it’s not, the places you should check are:

    1. Is any email being sent from your server? For example, do BP emails (like private message notifications) show up? How about other WP notifications, like a password reset?

    2. Check your spam folders (which it sounds like you’ve already done)

    It’s…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Cover Photo Issues in the forum How-to & Troubleshooting 8 years, 5 months ago

    Hm. In this case, there must be a disconnect between your theme’s setting $content_width and the BP features that use this value. Start your debugging at bp_register_theme_compat_default_features() in bp-core/bp-core-theme-compatibility.php.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Rebooting Activity Stream? in the forum Installing BuddyPress 8 years, 5 months ago

    @mbfit If by “unsearchable” you mean that they don’t show up in the directory anymore, then the problem is probably that the plugin deleted the ‘last_activity’ activity items for each user. As such, BP doesn’t show them as active users.

    If you retained a backup before you ran the delete process, then you should restore the last_activity items…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Creating Forum for Groups in the forum Miscellaneous 8 years, 5 months ago

    Can you give an example of what the “main forums page” URL looks like? Is it example.com/forums? (BP itself is not responsible for creating a page like this, so I want to have a better idea of where I can send you for help.)

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Pagination for Custom Loop in New BuddyPress Tab in the forum How-to & Troubleshooting 8 years, 5 months ago

    I’m not sure that previous_posts_link() and next_posts_link() will work in the context of a custom WP_Query loop. See https://wordpress.stackexchange.com/questions/20424/wp-query-and-next-posts-link for a pointer.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Change Profile Photo NO WEBCAM in the forum How-to & Troubleshooting 8 years, 5 months ago

    To be clear, you should see a ‘Take Photo’ link next to ‘Upload’ in the Change Profile Photo interface. See https://postimg.org/image/8q5qy769z/

    A first check: Look at the source of the page and search for the string camera_warnings (which should be a list of error messages). If you don’t see this, then it’s likely that another plugin is…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Scheduling post – missing activity in the forum How-to & Troubleshooting 8 years, 5 months ago

    Hi @humiges – Are the posts themselves being published on schedule? If I understand you correctly, the posts are being published but the corresponding activity items are not being created. Is that correct?

    I just checked, and it does appear that activity items generally *are* created for scheduled posts, at the time of publishing. So what you’re…[Read more]

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic Blink my avatar in the forum Creating & Extending 8 years, 5 months ago

    Hi @autox420 – The first answer to this question https://stackoverflow.com/questions/21203526/hide-unhide-div-with-button shows a technique that you can use to add a button like this to your theme.

  • Profile picture of Boone Gorges

    Boone Gorges replied to the topic How to Add Username to Menu in the forum How-to & Troubleshooting 8 years, 5 months ago

    Not sure if this is directly related to what you’re trying to do, but I wrote a post about dynamically adding items to a WP menu a couple years ago, which demonstrates some of what Henry has mentioned above: https://teleogistic.net/2013/02/11/dynamically-add-items-to-a-wp_nav_menu-list/

  • Profile picture of Robrt Roy

    Robrt Roy's profile was updated 8 years, 5 months ago

    Robrt Roy

    @honjfer4t

    View Profile
  • Profile picture of DragoWeb

    DragoWeb replied to the topic Can’t upload avatar image under 451px in the forum How-to & Troubleshooting 8 years, 5 months ago

    One more thing: Edit your .ovhconfig in the FTP’s root and change :

    environment=development

    into

    environment=production

    Then save and upload

  • Profile picture of DragoWeb

    DragoWeb replied to the topic Can’t upload avatar image under 451px in the forum How-to & Troubleshooting 8 years, 5 months ago

    Ok, I found the problem. I had to swich from legacy to stable environment in my OVH admin section, then imagemagick is now enable. Hope this will help someone else 🙂

  • Profile picture of DragoWeb

    DragoWeb replied to the topic Can’t upload avatar image under 451px in the forum How-to & Troubleshooting 8 years, 5 months ago

    I’ve installed a WP on local and it works. Then I’ve installed a WP on a test folder and the problem happens again. So I guess this is a server problem. PRobably the GD or imagemagick library.

    GD is enable (version bundled (2.1.0 compatible)) but I can’t find imagemagick in the phpinfo. I’m hosted by OVH and have no idea how to proceed to…[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