-
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
actionusingbp_is_current_action(). To learn more about whatactionoraction_variablesare set as you browse your site, I recommend adding r-a-y’s BP Footer Debug plugin: https://gist.github.com/r-a-y/5736878Page loads are often caught on the action
bp_actions.You’d have to do some more…[Read more]
-
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
actionusingbp_is_current_action(). To learn more about whatactionoraction_variablesare set as you browse your site, I recommend adding r-a-y’s BP Footer Debug plugin: https://gist.github.com/r-a-y/5736878Page loads are often caught on the action
bp_actions.You’d have to do some more…[Read more]
-
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:
-
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_activityand a value like2015-06-16 13:29:04to reliably appear in the members directory. You can “repair” this value once the users are imported by visiting (from wp-admin)Tools > BuddyPressthen selectRepair user "last activity" data. In fact, it probably wouldn’t hurt…[Read more] -
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
idset as the primary key?
Isidset to auto-increment?Since you’ve already emptied records from the database, I suspect you’re familiar with some…[Read more]
-
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
idset as the primary key?
Isidset to auto-increment?Since you’ve already emptied records from the database, I suspect you’re familiar with some software for MySQL…[Read more]
-
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
-
wifeca hzglcv's profile was updated 11 years ago
-
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?
-
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]
-
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? 🙂
-
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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.phpthen try to create a group?https://gist.github.com/dcavins/a9197f21d7f31b6594bc
I added this to my theme’s
functions.phpand the file that it created (groups_group_after_save_args.txt) ended up at the root of my site.…[Read more] -
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?
-
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. -
nikol esmy's profile was updated 11 years ago
- Load More