Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of David Cavins

    David Cavins replied to the topic adding pretty URLs as filters to a group directory? in the forum How-to & Troubleshooting 11 years ago

    You could add a page-load listener and look for the action using bp_is_current_action(). To learn more about what action or action_variables are set as you browse your site, I recommend adding r-a-y’s BP Footer Debug plugin: https://gist.github.com/r-a-y/5736878

    Page loads are often caught on the action bp_actions.

    You’d have to do some more…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic adding pretty URLs as filters to a group directory? in the forum How-to & Troubleshooting 11 years ago

    You could add a page-load listener and look for the action using bp_is_current_action(). To learn more about what action or action_variables are set as you browse your site, I recommend adding r-a-y’s BP Footer Debug plugin: https://gist.github.com/r-a-y/5736878

    Page loads are often caught on the action bp_actions.

    You’d have to do some more…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic How to call groups by a different name in the forum How-to & Troubleshooting 11 years ago

    Your best best is to create a new language file, then you can customize nearly all of the strings:

    Customizing Labels, Messages, and URLs

  • Profile picture of David Cavins

    David Cavins replied to the topic Member import in the forum Installing BuddyPress 11 years ago

    Hi Zoe-

    My memory is that users need to have usermeta with the key last_activity and a value like 2015-06-16 13:29:04 to reliably appear in the members directory. You can “repair” this value once the users are imported by visiting (from wp-admin) Tools > BuddyPress then select Repair user "last activity" data. In fact, it probably wouldn’t hurt…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Groups function is broken in the forum How-to & Troubleshooting 11 years ago

    Hi @pilha-

    That’s totally weird behavior. It seems like the table in your database has lost its mind. 🙂

    Can you check the structure of the table wp_bp_groups? What I want to know is:

    Is id set as the primary key?
    Is id set to auto-increment?

    Since you’ve already emptied records from the database, I suspect you’re familiar with some…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Groups function is broken in the forum How-to & Troubleshooting 11 years ago

    Hi @pilha-

    That’s totally weird behavior. It seems like the table in your database has lost its mind. 🙂

    Can you check the structure of the table? What I want to know is:

    Is id set as the primary key?
    Is id set to auto-increment?

    Since you’ve already emptied records from the database, I suspect you’re familiar with some software for MySQL…[Read more]

  • Profile picture of SherkSpear

    SherkSpear replied to the topic Moderate Group Post in buddyPress in the forum How-to & Troubleshooting 11 years ago

    Also looking for a plugin to do this.. oh my

  • Profile picture of wifeca hzglcv

    wifeca hzglcv's profile was updated 11 years ago

    wifeca hzglcv

    @gaisaink46

    View Profile
  • Profile picture of VentureCore

    VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 11 years ago

    Question:

    This works with and without the semicolon after string in ‘before_members_loop’

    <?php do_action( 'bp_before_members_loop' ); ?>
    or
    <?php do_action( 'bp_before_members_loop' ) ?>

    Do you see either of these causing other problems or preventing other calls?

  • Profile picture of VentureCore

    VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 11 years ago

    OK, so here’s the solution…
    <?php /* Querystring is set via AJAX in _inc/ajax.php - bp_dtheme_object_filter() */ ?>
    <?php do_action( 'bp_before_members_loop' ) ?>

    <?php
    if ( bp_ajax_querystring( 'members' ) ==""){
    $queryString = "type=alphabetical&action=alphabetical&page=1";}
    else {$queryString = bp_ajax_querystring( 'members' );}
    ?>

    <?php if…[Read more]

  • Profile picture of VentureCore

    VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 11 years ago

    Thank you,

    I tried that both in members-loop and now in index and neither work. It changes the order the list shows up in the dropdown but does not affect the default sort order.

    I had a solution but didn’t record it, it is either not working now or got overwritten through an update.

    Any other thoughts? 🙂

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Groups function is broken in the forum How-to & Troubleshooting 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Groups function is broken in the forum How-to & Troubleshooting 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic in the forum [Resolved] Groups function is broken 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic in the forum [Resolved] Groups function is broken 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic in the forum [Resolved] Groups function is broken 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic in the forum [Resolved] Groups function is broken 11 years ago

    Hi Pihla-

    I can’t reproduce the problem you’re having. Can you add a tracer to your theme’s functions file or to bp-custom.php then try to create a group?

    https://gist.github.com/dcavins/a9197f21d7f31b6594bc

    I added this to my theme’s functions.php and the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more]

  • Profile picture of Hugo Ashmore

    Hugo Ashmore replied to the topic [Resolved] Groups function is broken in the forum How-to & Troubleshooting 11 years ago

    @pihla I can’t replicate this issue on a trunk install or stable 2.3.1 tag on single site twentyfifteen/fourteen.

    I can create groups with out issue and they receive the group creator as primary admin / member

    Are there any other possible factors overlooked that could be affecting things?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Limit the stream activity in the forum Ideas 11 years ago

    Yes. You can use bp_parse_args() for that. See the Using bp_parse_args() to filter BuddyPress template loops article for more info.

  • Profile picture of nikol esmy

    nikol esmy's profile was updated 11 years ago

    nikol esmy

    @nikolesmy83

    View Profile
  • 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