Replies
- Brajesh Singh on November 3, 2017 at 10:15 pm in reply to: [Resolved] Remove activity tab for specific member type on members page/members loop #11529
Hi,
I am sorry, I missed your post on forum.1. Do you mean the profile activity tab? Yes, it is but it qill most probably break the site if you don’t set some other component as the default component.
Please let me know your goals and I will be able to assist.
Thank you
Brajesh - Brajesh Singh on November 3, 2017 at 9:33 pm in reply to: [Resolved] BuddyPress Activity Shortcode (user_role) #11528
Thank you for sponsoring it.
Version 1.1.0 supports the filtering by role.Marking it as resolved.
Regards
Brajesh - Brajesh Singh on November 3, 2017 at 9:31 pm in reply to: Issues uploading a video for iphone. File type unsupported #11527
Hi David,
Thank you for confirming.The problem is MediaElementjs player(The video player) we are using does not support this file type.
We are about to release a temporary solution for converting videos(using a 3rd party plugin integration), until then, I am sorry but we don’t have a solution for the iphone videos.
Brajesh
- Brajesh Singh on November 3, 2017 at 9:11 pm in reply to: Getting Mediapress to open all images in Colorbox/Lightbox #11526
Hi Audiomonk,
Welcome to BuddyDev.1. Please do not use the solution in the thread https://buddydev.com/support/forums/topic/how-to-use-third-party-lightbox-plugin-to-open-images/ . It is not recommended but just to show that it is feasible.
Now coming back to your question,
By all image, can you please tell me which listing, single gallery image listing, shortcode, widget or where? The lightbox is supported on all now. Please visit dashboard->MediaPress->settings->Themes and make sure you have it enabled.Please do let me know if you have already done that.
PS:- version 1.2.1 will support lightbox for all media type.
Thank you
Brajesh - Brajesh Singh on November 3, 2017 at 5:45 pm in reply to: Issues uploading a video for iphone. File type unsupported #11523
Hi David,
Please add mov to the list of file extensions likemp4,flv,mpeg,m4a,m4p,m4b,m4r,m4v,mov
I read somewhere that the videos saved on iphone have mov extension.
Can you please give it a try?
- Brajesh Singh on November 3, 2017 at 5:06 pm in reply to: [Resolved] Deactivate Account Plugin setting page blank #11521
Also, is the link appearing in the menu but the page is not rendered?
- Brajesh Singh on November 3, 2017 at 5:05 pm in reply to: [Resolved] Deactivate Account Plugin setting page blank #11520
Hi Claudio,
Thank you for purchasing the plugin.I am sorry for the inconvenience. It seems to me that most probably the admin user does not have “delete_users” capability.
we use this capability to show the admin settings.
is there any chance that you or someone removed it using “Members” plugin?
Please let me know and I will assist.
- Brajesh Singh on November 3, 2017 at 5:02 pm in reply to: [Resolved] Sort Media on Mobile Devices #11518
Thank you Andreas.
Glad it is resolved 🙂 - Brajesh Singh on November 3, 2017 at 2:09 pm in reply to: [Resolved] bp-force-profile-photo: redirection only for buddypress pages #11513
Hi Herve,
Please put this in your bp-custom.php. The snippet on example was only for mmebres page.
I am adding this snippet there too.
/** * Do not redirect users on non bp pages. * * @param bool $skip should we skip or redirect. * * @return bool */ function buddydev_skip_redirect_on_non_bp_pages( $skip ) { if ( ! is_buddypress() ) { $skip = true; } return $skip; } add_filter( 'bp_force_profile_photo_skip', 'buddydev_skip_redirect_on_non_bp_pages' );Hope that helps.
Regards
Brajesh - Brajesh Singh on November 3, 2017 at 11:08 am in reply to: [Resolved] Remove buddyblog "Posts" link in menu #11510
Thank you. I will post the code today.