Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • Plugins
  • Themes
  • Documentation
  • Blog
  • Support
  • Download

BuddyPress.org


  • Register
  • Lost Password
  • Log In

@sbrajesh active 2 months, 1 week ago
@mikey3d Can you please open a ticket on the github repo with details(WP/BP version) or open a topic here in the forum so we can discuss. It is working for me on wordpress multisite 3.2.1 and Bp trunk. The two places are for different purposes. The github page is for the development version/issue tracking etc while the link on site is for the […] View
  • Personal
  • Mentions
  • Favorites
  • Profile picture

    Brajesh Singh replied to the topic BuddyPress Notification in the forum Your BuddyPress 2 months, 1 week ago

    @webwarriorwng
    I am the author of that plugin. Can you please tell me the problem you are faccing.

    I will appreciate a little detail about your BuddyPress/WordPress version and theme you are using?

  • Profile picture

    Brajesh Singh replied to the topic How to split out BuddyPress notifications drop down items to their own top level in the forum Installing BuddyPress 2 months, 2 weeks ago

    Do you want it to be hooked to the main menu of the bp-default theme when a user is logged in ?

  • Profile picture

    Brajesh Singh replied to the topic Installed on Wordpress Mulitisite but can't see buddypress on my site in the forum Installing BuddyPress 2 months, 2 weeks ago

    Are you doing it on a live site? Is your Theme BuddyPress compatible. For BuddyPress 1.6.x, the BuddyPress features are only available to BuddyPress enabled theme. In BuddyPress 1.7, BuddyPress automatically […]

  • Profile picture

    Brajesh Singh replied to the topic Installed on Wordpress Mulitisite but can't see buddypress on my site in the forum Installing BuddyPress 2 months, 2 weeks ago

    You will need to configure BuddyPress before it comes into action.

    Look for the notice in the Network admin. If it is not there, just click Network Admin-> Settings->BuddyPress and you should see the […]

  • Profile picture

    Brajesh Singh replied to the topic How to split out BuddyPress notifications drop down items to their own top level in the forum Installing BuddyPress 2 months, 2 weeks ago

    Hi,
    Have a look at this function

    bp_core_get_notifications_for_user here https://github.com/buddypress/trunk/blob/master/bp-members/bp-members-notifications.php#L83

    You can modify it to suit your need(this […]

  • Profile picture

    Brajesh Singh replied to the topic Auto ”load more” activity stream items when scroll reaches the bottom of the page in the forum Creating & Extending 2 months, 2 weeks ago

    @bphelp
    Thank you for the mention.
    I just put that for the community as I was implementing it in one of my upcoming themes(too much delayed).

    It is not about competition, It is about making the things […]

  • Profile picture

    Brajesh Singh replied to the topic pagination of query not working in spasfic tab page in the forum Miscellaneous 2 months, 2 weeks ago

    make sure you have passed the ‘paged’ parameter with the correct value in query posts.

  • Profile picture

    Brajesh Singh replied to the topic How to remove auto generated links in user profile? in the forum Installing BuddyPress 2 months, 2 weeks ago

    Look for spaces before the opening php tag <?php
    Make sure you don't have white spaces before the opening php tag and the closing php tag(from your description, It is before the opening php tag).

    That will […]

  • Profile picture

    Brajesh Singh replied to the topic Users create new site after registration in the forum How-to & Troubleshooting 2 months, 2 weeks ago

    Yes.
    He can create it from Blog Directory. You will see the link in blogs directory if you are logged in to create a blog.

  • Profile picture

    Brajesh Singh replied to the topic BP 1.7 – what is this message intended for ? in the forum Installing BuddyPress 2 months, 3 weeks ago

    Hi @chouf1
    sorry I could not follow up.
    That message is intended for debugging the site and will be visible if WP_DEBUG is set true as you have already noticed.

    It is there to aid the developers/site admin to […]

  • Profile picture

    Brajesh Singh replied to the topic How To Limit/Hide The "Friends" Tab Only To Account Owner & Admin? in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    No problem. You are most welcome :)

  • Profile picture

    Brajesh Singh replied to the topic How To Limit/Hide The "Friends" Tab Only To Account Owner & Admin? in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    You Can put this code in your bp-custom.php and It will take care of your issue

    `
    add_action(‘bp_friends_setup_nav’,'bpdev_custom_hide_friends_if_not_self’);

    function […]

  • Profile picture

    Brajesh Singh replied to the topic pointers for : change avatar – nag bar in the forum Creating & Extending 2 months, 3 weeks ago

    The simple way is to add a usser meta field when an avatar is uploaded. delete the meta when avatar is deleted and check for this usermeta to show the nag to the current user.

  • Profile picture

    Brajesh Singh replied to the topic Disabling BP Registration in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    do not add it to your bp-custom.php
    Add it to your theme’s functions.php for now, and It will work.

  • Profile picture

    Brajesh Singh replied to the topic Restrict friends on Buddypress in the forum Creating & Extending 2 months, 3 weeks ago

    I will suggest going via the user meta route. You can add a user meta to define type of user. that will give you a lot of flexibility in future while searching/listing users.

  • Profile picture

    Brajesh Singh replied to the topic BP 1.7 – what is this message intended for ? in the forum Installing BuddyPress 2 months, 3 weeks ago

    Most probably the code you are using is trying to access logged in user’s data before init action. Since the current user is set on ‘set_current_user’ hook’ which is just before init, any function trying to access […]

  • Profile picture

    Brajesh Singh replied to the topic Member Profile in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    Hi,
    It is coming from members/single/profile-loop.php

    It seems you don’t have the xprofile fields(or the user has not entered data) or you have some sort of privacy enabled on those fields which are preventing […]

  • Profile picture

    Brajesh Singh replied to the topic Restrict friends on Buddypress in the forum Creating & Extending 2 months, 3 weeks ago

    You can do that by easily filtering on this hookbp_get_add_friend_button
    If you can provide the code you are using to differentiate a user type(parents/student/professor), It will be super easy to put the […]

  • Profile picture

    Brajesh Singh replied to the topic Member Profile in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    Are you looking to show in memebrs profile top header ?
    if yes, look inside yourtheme/members/single/member-header.php

  • Profile picture

    Brajesh Singh replied to the topic Avatar issues ???!!?? in the forum How-to & Troubleshooting 2 months, 3 weeks ago

    It is a known issue and some of the temporary possible solutions are mentioned on the ticket here.

    Please have a look

    https://buddypress.trac.wordpress.org/ticket/4252

  • Load More
Profile picture of Brajesh Singh
  • Activity
    • Personal
    • Mentions
    • Favorites
  • Profile
    • View
  • Sites 0
    • My Sites
  • Forums
    • Topics Started
    • Replies Created
    • Favorites

See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS

Follow BuddyPress on Twitter • GPL • Contact Us • Terms of Service

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
  • BuddyPress.org
    • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Lost Password
    • Log In
Log Out