Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Diana K. Cury

    Diana K. Cury wrote a new post on the site BuddyPress Brasil 10 years, 9 months ago

    BuddyPress 2.3.3O BuddyPress 2.3.3 já está disponível. Esta é uma versão de manutenção e segurança importante para a série 2.3 e recomendada a todas as instalaçõ […]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Best practices for usermeta -> xprofile (Profile Builder) in the forum How-to & Troubleshooting 10 years, 9 months ago

    xProfile data is a BuddyPress thing and user meta is a WordPress thing. Which one you use will depend on whether you plan to always use BuddyPress. If not then taking the user meta approach will ensure your plugin will work on all WordPress installs (even when BuddyPress is deactivated).

  • Profile picture of Henry Wright

    Henry Wright replied to the topic BuddyPress Sitemap? in the forum How-to & Troubleshooting 10 years, 9 months ago

    The best advice I can give is to look at how some of the already-available plugins do it. XML Sitemaps is a good one to learn from. It might not cover BuddyPress pages but I’ve used it in the past and it worked great for me.

  • Profile picture of @mercime

    @mercime updated the Version 2.3.3 page, on the BuddyPress Codex 10 years, 9 months ago

    Version 2.3.3 is a BuddyPress maintenance release.

    For Version 2.3.3, the database version (_bp_db_version in wp_options) was 10071, and the Trac revision was 10072. Read the full ticket log here.

    Fixes

    * […]

  • Profile picture of John James Jacoby

    John James Jacoby updated the Version 2.3.3 page, on the BuddyPress Codex 10 years, 9 months ago

    Version 2.3.3 is a BuddyPress maintenance release.

    For Version 2.3.3, the database version (_bp_db_version in wp_options) was 10071, and the Trac revision was 10072. Read the full ticket log here.

    Fixes

    * […]

  • Profile picture of John James Jacoby

    John James Jacoby wrote a new post on the site BuddyPress.org 10 years, 9 months ago

    BuddyPress 2.3.3 is now available. This is an important maintenance and security release for the 2.3 branch of code, and all BuddyPress installations are recommended to upgrade as soon as possible.

    BuddyPress […]

  • Profile picture of Mukesh Singh

    Mukesh Singh's profile was updated 10 years, 9 months ago

    Mukesh Singh

    @greencoffeeindia

    View Profile
  • Profile picture of SuitePlugins

    SuitePlugins replied to the topic how to hide field to public when no content or selection is present in field. in the forum How-to & Troubleshooting 10 years, 9 months ago

    Hi Quinn,

    You need to check if the field is empty or not

    Your code:
    echo "<li>";
    echo '<strong style="color:#777;text-decoration:underline;">Artist Wanted: </strong>';
    $group_wanted = groups_get_groupmeta( $bp->groups->current_group->id, 'e2e_wanted' );
    echo $group_wanted;
    echo "</li>";

    Code with conditional:

    $group_wanted =…
    [Read more]

  • Profile picture of SuitePlugins

    SuitePlugins replied to the topic Change visibility of avatars > hide for not-logged-in users in the forum How-to & Troubleshooting 10 years, 9 months ago

    I have created a plugin specifically for this.

    BP Private Avatars

    Let me know what you think.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Create Function When Favorite Button Clicked in the forum How-to & Troubleshooting 10 years, 9 months ago

    So, is that how the spam or favorite/un favorite buttons work?

    Maybe. It will depend if you have JavaScript enabled in your browser. If you do, then Ajax will be working. If you don’t, it’s likely the traditional POST or GET methods will be in operation.

  • Profile picture of Angelo Rocha

    Angelo Rocha replied to the topic Group Category in the forum Creating & Extending 10 years, 9 months ago

    Any idea?
    =/

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Show permanent steam link in profiles? in the forum How-to & Troubleshooting 10 years, 9 months ago

    I’m not sure what the “provider user identifier” is? If it’s something in WordPress Social Login, try asking the question over at their support forum. They should be up to speed on it.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic thumb and full avatars are the same size -_- in the forum How-to & Troubleshooting 10 years, 9 months ago

    Your theme might be Customizing BuddyPress Avatars?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Create Function When Favorite Button Clicked in the forum How-to & Troubleshooting 10 years, 9 months ago

    You’d need to use Ajax. Take a look at the Ajax in Plugins article for more info.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic How to change the "Members" color in members page in the forum How-to & Troubleshooting 10 years, 9 months ago

    How are you linking your style sheet? Make sure you’re using wp_enqueue_style().

    Ref: https://codex.wordpress.org/Function_Reference/wp_enqueue_style

  • Profile picture of Henry Wright

    Henry Wright replied to the topic bp_loggedin_user_id() is always 0 in the forum How-to & Troubleshooting 10 years, 9 months ago

    You can use add_action() anywhere. Whether or not it executes the functions attached to it is another question. Take the add_action() inside your function for example. It’ll only execute custom_bp_subnav() on the condition that $loggedin == $displayed. Also the bp_ready hook must be running.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Best CRM + online marketing sytem in the forum Installing BuddyPress 10 years, 9 months ago

    You could use WordPress as your CRM. There are quite a few plugins in the repo for that purpose. My advice is to set up a test install, try them out and see which one works best for you.

  • Profile picture of Marc

    Marc started the topic Bug in bp_notifications_get_notifications_for_user hook or misunderstood in the forum Installing BuddyPress 10 years, 9 months ago

    Hi everyone,

    I’am currently try to add custom notification from a non BuddyPress component. I’m using this hooks:
    bp_notifications_get_registered_components
    bp_notifications_get_notifications_for_user
    and this function:
    bp_notifications_add_notification

    Everything works well except the hook bp_notifications_get_notifications_for_user. My problem…[Read more]

  • Profile picture of Quinn Goldwin

    Quinn Goldwin started the topic how to hide field to public when no content or selection is present in field. in the forum How-to & Troubleshooting 10 years, 9 months ago

    I picked up this code for adding extra fields to my buddypress groups. http://pastebin.com/Bj3aE4Q0

    Everything works great but I was wondering if there is a string of code I can add so it only shows that field if a selection was made or someone filled in that field in the backend settings.

    Right now by default all the fields show whether people…[Read more]

  • Profile picture of Quinn Goldwin

    Quinn Goldwin replied to the topic convert fields to clickable links that open in new window. in the forum How-to & Troubleshooting 10 years, 9 months ago

    Shane you are awesome man! I really appreciate you taking the time to help out. You have a wonderful week and god bless!

  • 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