-
Angelo Rocha replied to the topic Search Members in the forum How-to & Troubleshooting 8 years, 7 months ago
Good, i’m changing the names of the plugins.
The question is about BuddyPress.
Sorry again. -
Angelo Rocha replied to the topic Insert Notification in the forum How-to & Troubleshooting 8 years, 7 months ago
Sorry! Is buddyPress.
Thanks, your reply help me. -
Angelo Rocha started the topic Insert Notification in the forum How-to & Troubleshooting 8 years, 7 months ago
Is possible insert a notification to specific user using php?
Eg.:
bbpress_insert_notification($user_id, $content_notification); -
Angelo Rocha started the topic Search Members in the forum How-to & Troubleshooting 8 years, 7 months ago
How to search members by bbpress custom fields using WP_User_Query?
-
Angelo Rocha replied to the topic filter activity loop in the forum How-to & Troubleshooting 9 years, 2 months ago
Works fine with a little change:
function omni_filter_activity( $retval ) {
$retval['action'] = 'bbp_reply_create,bbp_topic_create'; // change scope per action
return $retval;
} add_filter( 'bp_after_has_activities_parse_args', 'omni_filter_activity' ); -
Angelo Rocha replied to the topic filter activity loop in the forum How-to & Troubleshooting 9 years, 2 months ago
Hi Henry Wright.
I pasted in functions.php
=/
This is my custom loop:
[Read more]
<?php do_action( 'bp_before_activity_loop' ); ?>
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>
<noscript>
<div class="pagination">
<div class="pag-count"><?php bp_activity_pagination_count(); ?></div>
<div class="pagination-links"><?php… -
Angelo Rocha replied to the topic filter activity loop in the forum How-to & Troubleshooting 9 years, 2 months ago
Hi shanebp.
Not work for me, how to add the filter here:if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) :
Thanks.
-
Angelo Rocha replied to the topic filter activity loop in the forum How-to & Troubleshooting 9 years, 2 months ago
Hi danbp.
The objective is display in a custom loop of activities only forum threads. -
Angelo Rocha started the topic filter activity loop in the forum How-to & Troubleshooting 9 years, 2 months ago
How do activity only display updates from new topics and replies?
-
Angelo Rocha replied to the topic Group Category in the forum Creating & Extending 9 years, 3 months ago
Any idea?
=/ -
Angelo Rocha replied to the topic Group Category in the forum Creating & Extending 9 years, 3 months ago
Is possible create a loop to display only groups with certain terms?
I try:
[Read more]
$args = array(
'posts_per_page' => '-1',
'tax_query' => array(
array(
'taxonomy' => 'bp_group_tags',
'field' => 'slug',
'terms' => '3d',
),
),
$query = new WP_Query($args);
?>
<?php if( $query ->… -
Angelo Rocha started the topic Group Category in the forum Creating & Extending 9 years, 3 months ago
Is possible add categories to bbpress groups?
-
Angelo Rocha's profile was updated 9 years, 3 months ago
@angelorocha
Active 1 month, 1 week ago