Replies
- Brajesh Singh on June 16, 2016 at 6:16 pm in reply to: [Resolved] Add separate landing page as WordPress Front Page #4283This reply has been marked as private.
- Brajesh Singh on June 16, 2016 at 6:15 pm in reply to: [Resolved] Add separate landing page as WordPress Front Page #4282
Hi Dandy,
Thank yo.
I am glad it is working. - Brajesh Singh on June 16, 2016 at 6:14 pm in reply to: [Resolved] Display last name in profile pages #4281
Hi Javier,
Thank you for the update. Yes, you are right about it. Though it is possible to write a script that does it for the older registrations, It does not seem to be readily available.Marking the thread as resolved. Please do post a topic if you need any help in future 🙂
- This reply has been marked as private.
- Brajesh Singh on June 16, 2016 at 6:11 pm in reply to: Show custom field in post with BP Simple Front End Post #4279
Hi Tiziano,
Thank you.I am looking forward to your tests. Our team will certainly keep developing it 🙂
Hi Ro,
Please give me today. I am thinking about some strategy.Hi Zabrina,
Can you please tell me what do you mean by sharing media? MediaPress Uses WordPress attachment for storing media. So, everything that applies to attachment, applies to MediaPress.2. Yes, It is coming in August.
Hope that helps.
Regards
Brajesh- Brajesh Singh on June 16, 2016 at 6:01 pm in reply to: [Resolved] Show only post updates and comments using Buddypress Activity Shortcode #4276
Hi Eric,
Welcome to BuddyDev forums.Please use this and let me know if it works for you or not?
[activity-stream action='activity_update']Hope that helps.
Regards
Brajesh Hi,
Can you please upgrade to 1.0.5 and see if it works for you or not?
https://buddydev.com/plugins/bp-force-profile-photo/Thank you
Brajesh- Brajesh Singh on June 16, 2016 at 12:48 am in reply to: [Resolved] BP Profile Visibility Manager #4262
Hi Tom,
Welcome to BuddyDev.Please put this code in your bp-custom.php or your theme’s functions.php
function buddydev_disable_filtering_users() { if ( function_exists( 'bp_profile_visibility_loader' ) && current_user_can( 'manage_options' ) ) { bp_profile_visibility_loader()->set_data( 'is_visible', true );//all users will be visible } } add_action( 'bp_before_members_loop', 'buddydev_disable_filtering_users' ); //do you want to disable visibility after the loop? function buddydev_reenable_filtering_users() { if ( function_exists( 'bp_profile_visibility_loader' ) && current_user_can( 'manage_options' ) ) { bp_profile_visibility_loader()->set_data( 'is_visible', false );//all users will be visible according to their preference } } add_action( 'bp_after_members_loop', 'buddydev_reenable_filtering_users' );It is the simplest way to enable/disable filtering.
The current_user_can() function takes capability for checking. For the Capabilities, Please see https://codex.wordpress.org/Roles_and_Capabilities
Please do let me know if it works for you or not?