Replies
- Brajesh Singh on December 7, 2016 at 8:24 pm in reply to: [Resolved] Extended user groups plugin suggestion #6717
🙂
- Brajesh Singh on December 7, 2016 at 8:24 pm in reply to: [Resolved] Personal not linking to personal #6716
Hi Chris,
Thank you.Well, now I understand the reason too. It is because you are using the Facebook like activity stream. I will check and find a way.
Thank you
Brajesh Hi Justin,
1. Please ask your theme developer. It is the theme css that is conflicting with WordPress media modelbox and causing it.
2. I am sorry but at the moment, there is no way to do it. May be we can use some js and disable the submit button if the featured image is not selected, that won’t be a perfect solutin but will work for most of the cases.
Thank you
BrajeshHi Julien,
There are multiple ways to do it.
Here is one way(I just updated the above code)function bpdev_exclude_users( $qs = false, $object = false ) { //if not members, let us return if ( $object != 'members' ) { return $qs; } $args = wp_parse_args($qs); //we are looking into friends list if the user id is given, do not hide here if ( ! empty( $args['user_id'] ) ) { return $qs; } $excluded_users = get_users( array( 'role' => 'administrator', 'fields' => 'ID' ) ); if ( ! empty( $args['exclude'] ) ) { if ( ! is_array( $args['exclude'] ) ) { $args['exclude'] = explode( ',', $args['exclude'] ); } $args['exclude'] = array_merge( $args['exclude'], $excluded_users ); } else { $args['exclude'] = $excluded_users; } $args['exclude'] = join(',', $args['exclude'] ); $qs = build_query($args); return $qs; } add_action( 'bp_ajax_querystring','bpdev_exclude_users', 20, 2 );Please put it in your bp-custom.php and all the admins will be invisible in the members directory.
Hope that helps.
Regards
Brajesh- Brajesh Singh on December 7, 2016 at 12:54 am in reply to: [Resolved] Working on my site – need some feedback #6706
Hi Joshua,
Thank you for the details. I did check the site and It seems perhaps you have figured out the registration link redirection.Still, if you are going to use BuddyPress, if you enable BP_ENABLE_MULTIBLOG in bp-custom.php, the registration page will be available per site basis. I will suggest that we redirect to the accounting site if it accessed from other sites
Hope that helps.
- Brajesh Singh on December 6, 2016 at 12:41 pm in reply to: [Resolved] BuddyPress User Info Widget – Value of Checkbox and others #6698
You are most welcome.
- Brajesh Singh on December 6, 2016 at 11:27 am in reply to: [Resolved] Extended user groups plugin suggestion #6696
Wow, is that the left block. Looks great 🙂
hahaha 🙂
Hi Justin,
Please put this in your css filea#remove-post-thumbnail, #postimagediv a.thickbox { background: pink; display: inline-block; margin-top: 10px; padding: 10px; }Let me know if that works for you or not?
Thank you
Brajesh- Brajesh Singh on December 6, 2016 at 11:19 am in reply to: [Resolved] Bp-notify-post-author-blog-comment throwing serious errors #6693
Hi Siyah,
Thank you for the details.
No, It is not caused by your environment. It is caused by one of the above plugins most probably. I am looking at it and will let you know soon.Thank you
Brajesh