Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Slava Abakumov

    Slava Abakumov 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

    // this function should return array with users ids, like this: array(123,3423,21,34231)
    $user_ids = my_custom_ids( 'gender', 'female' );

    if ( bp_has_members( array(
    'type' => 'online',
    'include' => $user_ids
    ) ) ) :

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Add Group Category & Cities in the forum How-to & Troubleshooting 10 years, 3 months ago

    It’s possible, but there is no ready-to-use out-of-the-box plugins for that.

    Categories: http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups or https://wordpress.org/plugins/bp-group-categoriestypes/

    Location:…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Remove labels from xprofile edit in the forum How-to & Troubleshooting 10 years, 3 months ago

    I checked the code – it won’t decrease number of queries. All the data for labels are taken from a global variable, which is set when all fields are populated. So you won’t decrease server load by removing labels.

    So you can do that via CSS. There is no other simple solution for that (I’m assuming you are on a BuddyPress 2.4.x). Editing template…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Remove Birthday from Public in the forum How-to & Troubleshooting 10 years, 3 months ago

    There is a setting for this on a screen, where you edit this field: http://take.ms/B1sZI
    So just select Enforce field visibility and Visibility selectbox change to Only me.
    Thus users (and admin, of course) will be able to see only own field data, with no ability to see other users birthdays.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 10 years, 3 months ago

    Use @username for each user you want to mention in a blog post – and they will receive notification.

  • Profile picture of Mark

    Mark started 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,

    I’m having a hard time accomplishing something that is probably really simple but I just don’t have the coding knowledge to figure it out. Basically I want to customize a members loop by combining multiple bp_has_members() functions.

    I’d like to combine <?php if ( bp_has_members( 'type=online' ) ) : ?> and <?php if ( bp_has_members(…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 10 years, 3 months ago

    Blog posts:
    https://wordpress.org/plugins/new-post-notification/
    https://wordpress.org/plugins/notify-users-e-mail/
    Other options: http://www.mailpoet.com/post-notify-solutions-wordpress/

    And I didn’t find anything special for activity updates.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic I don't understand some of BuddyPress requirements in the forum Installing BuddyPress 10 years, 3 months ago

    If you have WordPress installed with permalinks (so urls are like: example.com/sample-page, and they work – display the content of the Sample Page) and you can upload images without any errors on Media page in wp-admin area (and can attached/insert into post/page content in WYSIWYG editor) – you are good to go.
    That’s basically what those 2 last…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 10 years, 3 months ago

    Do you want them to be notified on a new blog post or a new activity post update?

  • Profile picture of Slava Abakumov

    Slava Abakumov's profile was updated 10 years, 3 months ago

    Slava Abakumov

    @slaffik

    View Profile
  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic how to increase group list in group page? in the forum How-to & Troubleshooting 10 years, 3 months ago

    Post this to bp-custom.php or functions.php of your theme.

    function redblacked_more_groups_per_page($args) {
    $args['per_page'] = 40;

    return $args;
    }

    add_filter( 'bp_after_has_groups_parse_args', 'redblacked_more_groups_per_page' );

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Private message link displays twice in the forum How-to & Troubleshooting 10 years, 3 months ago

    Just go to StudioPress forum and ask there, as it’s clear from your post that it’s not a BuddyPress issue (as everything is ok in 2016 theme).

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Adding to Header area in the forum How-to & Troubleshooting 10 years, 3 months ago

    Seems, nothing to do here with BuddyPress. It’s better to post this question somewhere else, on basic development forums. You will need basic css/html and perhaps js skills. Or try to hire a developer.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic members current time? in the forum How-to & Troubleshooting 10 years, 3 months ago

    There is no such plugin. But it’s a good idea. Noted. Hope fully will create it soon. You can subscribe to me on github – that’s where I store free plugins.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Can you add RSS-feeds to profiles to auto update timelines? in the forum How-to & Troubleshooting 10 years, 3 months ago

    I’ve developed this plugin: https://github.com/WeFoster/bp-feeds
    Currently it does not auto-update activity stream, any user should visit feeds page to get data from feed source.
    But auto update will be implemented 🙂 It’s just a tricky task.

    Would be really cool if you could test it and provide feedback (ideally – using github issues, but this…[Read more]

  • Profile picture of Mark

    Mark replied to the topic Filter Profile Fields in the forum How-to & Troubleshooting 10 years, 3 months ago

    Hi @klame,

    I am a newbie at all this too. I discovered that the function you pulled off Buddypress.org doesn’t have to be modified to work. You have to simply copy and paste it in your functions.php file as/is without changing a thing. What matters and needs to be modified is the php to render the members loop on your page (e.g., <?php if (…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Is there a plugin for reports? in the forum How-to & Troubleshooting 10 years, 3 months ago

    Perhaps not quite what you’re after but @danbp has a community statistics plugin that might be helpful?
    https://wordpress.org/plugins/buddy-community-stats/

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic HOW CAN I WRITE MENTION IN BUDDYPRESS? in the forum How-to & Troubleshooting 10 years, 3 months ago

    If the Friends component is enabled, you’ll first need some friends. 🙂

    After that, just type an @ sign and start typing. You should get a drop-down with suggestions.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Upload Failed! Error was: That photo is too big. Please upload one smaller than in the forum How-to & Troubleshooting 10 years, 3 months ago

    I assume you’ve tried other images — i.e. it’s not a problem with the one image you have been testing with?

    I’m not sure, this is pretty odd.

    @imath Any ideas?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic in bp private messaing can i send? in the forum How-to & Troubleshooting 10 years, 3 months ago

    Yes you can. Just type in multiple recipients when you’re composing the message.

  • 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