Replies
- Brajesh Singh on May 21, 2017 at 7:09 pm in reply to: [Resolved] BP Profile Visibility Manager: plugin is creating "protected" tab in profiles #9260
Thank you Andy.
You have already provided enough information. I will update and write back here.Thank you
Brajesh Hi Kristin,
Can you please tell me which file type are they trying to download? I just tested with the image and it is working fine for subscribers.Thank you
Brajesh- Brajesh Singh on May 21, 2017 at 3:42 pm in reply to: [Resolved] BP Profile Visibility Manager: plugin is creating "protected" tab in profiles #9257
Hi Andy,
I am sorry.
yes, That is not the expected behaviour. We added optional protected page in last week’s update.Please allow me to check and push a fix soon.
Thank you
Brajesh Hi Kristin,
Please allow me to look into it. I will update you in 1-2 hours.
Thank you
Brajesh- Brajesh Singh on May 21, 2017 at 6:06 am in reply to: [Resolved] BP Profile Visibility Manager: plugin is creating "protected" tab in profiles #9254
Hi Andy,
Welcome to BuddyDev.
It is the global preference ticking in.Please visit Dashboard->Settings->Bp Profile Visibility Settings
1. Please make sure that “Everyone” is selected as the default privacy
2. Also, There is an option whether to redirect or show protected on the profile. Please use the appropriate method there.Please let me know if that works for you or not?
Thank you
Brajesh Thank you for confirming.
I am glad it is fixed now.- Brajesh Singh on May 20, 2017 at 9:20 am in reply to: [Resolved] Issues about BuddyPress Extended Friendship Request #9241
You are welcome 🙂
- Brajesh Singh on May 20, 2017 at 9:19 am in reply to: [Resolved] Showing member profile type as icon in members directory #9239
Hi Henrik,
That looks good.
All the best 🙂 - Brajesh Singh on May 20, 2017 at 8:58 am in reply to: [Resolved] Stack error on settings page… #9238
Hi,
My apologies for the inconvenience.I just noticed, It should be throwing some error since we have missed to pass css class and forgot a check.
I am putting a fix in MediaPress and pushing on github. It will be available with the next release. It won’t have any side effect. It is used to allow adding extra css class on the image selector.
Thank you
- Brajesh Singh on May 19, 2017 at 9:13 pm in reply to: [Resolved] Showing member profile type as icon in members directory #9231
Hi Henrik,
Here is an example with font awesome. Please feel free to modify it and adapt with your own iconset./** * Show Font awesome icon based on the member type */ function buddydev_show_member_type_in_directory() { $user_id = bp_get_member_user_id(); if ( ! $user_id ) { return ; } $member_type = bp_get_member_type( $user_id, true ); $output = ""; if ( $member_type == 'kvinde' ) { $output ='<i class="fa fa-venus" aria-hidden="true"></i>'; } elseif ( $member_type == 'mand' ) { $output = '<i class="fa fa-mars" aria-hidden="true"></i>'; } echo $output; } add_action( 'bp_directory_members_item', 'buddydev_show_member_type_in_directory' );Please put the code in bp-custom.php.
Hope that helps.Regards
Brajesh