Replies
- 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?
- Brajesh Singh on June 16, 2016 at 12:27 am in reply to: Hide Comments – Site Wide Activity Widget #4261
Hi Jason,
No problem. Please do let me know if you need help with the display in your theme. I just need to know where you want to disable it.Thank you
Brajesh Hi Lee,
seems like a bug. Updating in an hour.Hi Christian,
There can be many reasons. I am sorry but I am on linux and may not be of much help right now.Can you please check this
http://stackoverflow.com/questions/6944679/html5-mp4-video-does-not-play-in-ie9Does any of the answer applies to your case?