Replies
- Brajesh Singh on March 25, 2020 at 8:06 pm in reply to: Posting with Buddypress Themepack Nouveau [activity-stream allow_posting=1] #28363
Hi Brad,
Thank you for the question.At the moment, the plugin can not do that for the BP Nouveau template pack.
For legacy, we use the form from theme. With nouveau this approach will not work.
The solution is to create your own implementation of activity form and the form handler.
Regards
Brajesh - Brajesh Singh on March 24, 2020 at 7:50 am in reply to: Private Message Rate Limiter – Rate Limit User Activity #28355This reply has been marked as private.
- Brajesh Singh on March 23, 2020 at 6:05 pm in reply to: [Resolved] Add class to all inputs generated by buddypress and or / xprofile #28353
Hi Mike,
Thank you for the question.I am sorry, I do not see any straight forward option for this.
Regards
Brajesh - Brajesh Singh on March 23, 2020 at 6:02 pm in reply to: [Resolved] acceptance checkbox is not working #28352
Hi,
The default registration page a page created by BuddyPress for allowing user signup. You can see it from Dashboard->Settings->BuddyPress->Pages screen.You can load css/js from our plugin on all pages by putting this code in your theme’s functions.php
add_filter( 'bpxcftr_load_front_assets', '__return_true' );I do not think It will be very helpful if all the fields are not appearing.
Regards
Brajesh Hi,
Welcome to BuddyDev.Please share the error message or link me to a screenshot.
Thank you
Brajesh- Brajesh Singh on March 23, 2020 at 5:58 pm in reply to: [Resolved] BuddyPress Activity Shortcode exclude #28349
You are welcome.
Hi Philippe
Thank you for checking.In that case, I will suggest contacting your theme developer and requesting for a fix.
Regards
Brajesh- Brajesh Singh on March 23, 2020 at 5:57 pm in reply to: continue reading / mediapress / Activity ShortCode #28347
Hi Philippe,
Thank you for the topic.This is by design in MediaPress( we link activity permalink to the gallery/media page).
I will remove it in the next version and that will make it normal for all existing activity too.Regards
Brajesh Hi Mike,
Welcome back.Thank you for the update. It’s good to know that it is fixed.
Regards
Brajesh- Brajesh Singh on March 23, 2020 at 10:46 am in reply to: Accept activity wall to be read only #28339
Hi Johan,
Thank you for the patience.Please update the allowed level with correct ids and you may use the following in your bp-custom.pp
add_filter( 'bp_activity_can_comment', function ( $can ) { $logged_id = bp_loggedin_user_id(); if ( ! function_exists( 'pmpro_getMembershipLevelForUser' ) || ! is_user_logged_in() || bp_get_activity_user_id() == $logged_id || is_super_admin() ) { return $can; } $level = pmpro_getMembershipLevelForUser( $logged_id ); if ( ! $level ) { return false; } $allowed_levels = array( 1, 2 ); if ( ! in_array( $level->id, $allowed_levels ) ) { $can = false; } return $can; } );Regards
Brajesh