Replies
- Brajesh Singh on May 22, 2018 at 8:31 am in reply to: Buddyblog privacy and activity featured image link #15235
Hi,
Thank you.The privacy option on that page was shown as an example of custom field type and not the real visibility. Please allow me to update the plugins by 25th or before.
Thank you
Brajesh - Brajesh Singh on May 22, 2018 at 8:24 am in reply to: Create separate member types that can't see each other #15234
Hi Daria,
Thank you for posting.It is very easy to filter member directories or any member list using the member type. So, restricting the users to their member type will be easy.
The problem will be filtering activity based on member type. There is no available API. It will need to be done by filtering on activity query conditions(still doable). If you have large number of users in each reason, the overhead may not be justified.
Another approach I see is using BuddyPress on Multisite with Multi Network. In that case activity/groups/posts/media etc separation will happen out of the box.
Restring the users to their reason will also be easy.
Regards
Brajesh - Brajesh Singh on May 22, 2018 at 8:20 am in reply to: Using the User Profile Tabs Creator Pro – howto move Settings tab to be subtab? #15233
Hi Leland,
Thank you for posting.Do you under Shop->My Account->Settings? I am not sure BuddyPress supports 3rd level child.
Also, You can add a link to any nav item to another nav item but they are not moved in actual sense. It is only dynamically linking.
The nav works in 2 ways in BuddyPress:- 1. A visible link that point to some ur
2. An attached callback that loads this screenUsing Member Types pro, if you move an existing nav item to another, you are only changing the first part. The url do not change and neither the handler.
Regards
Brajesh - Brajesh Singh on May 22, 2018 at 7:40 am in reply to: to the connection of an existing member: change (role, plan) #15232
Hi Herve,
Thank you for reminding.I will give it another shot tomorrow and post back.
Regards
Brajesh - Brajesh Singh on May 21, 2018 at 3:01 pm in reply to: Starting afresh with BuddyPress & Multisite #15223This reply has been marked as private.
- Brajesh Singh on May 21, 2018 at 2:58 pm in reply to: Starting afresh with BuddyPress & Multisite #15222This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on May 21, 2018 at 7:47 am in reply to: [Resolved] .Mov Format Video not playing #15218
Hi Darren,
My apologies for the delayed reply.It seems the mov file videos are not h.264 encoded. Currently, the player we user(MediaElement js player that comes bundled with WordPress), only support h.264 encoding.
We will need some kind of transcoder to convert the video the above encoding. I am working on a transcoder micro service(It was supposed to be available by now). It will be available in next 3-4 weeks now.
Thank you
Brajesh - Brajesh Singh on May 21, 2018 at 7:42 am in reply to: Buddyblog privacy and activity featured image link #15217
Hi trolinof,
Do you want to allow the private status from the BuddyBlog plugin? If that is the case, we might be able to assist you.Ps:- Do you want to give the users the Public|Private visibility option? We might have to update the plugin for this but it is achievable.
Regards
Brajesh Hi David,
Welcome to BuddyDev.You may use the following code to redirect non logged users
add_action( 'bp_template_redirect', function () { if ( ! is_user_logged_in() && bp_is_members_directory() ) { bp_core_redirect( site_url( '/' ) ); } } );If you are using the Member Types feature of BuddyPress and want to do it for the directory of a specific member type, you may use ‘bp_get_current_member_type()’ to check for that.
Hope that helps.
Regards
Brajesh