Replies
- Brajesh Singh on November 3, 2020 at 10:07 pm in reply to: MediaPress, mpp-list-media shortcode and sending media files in comments #34269
Hi Arsalan,
Thank you for the questions.1. Playlist view does not support pagination. Please use grid view and it shoudl work.
2. No. Currently we only support Media attachment with BuddyPress Activity updates. We are expecting to support other places too in near future.
Regards
Brajesh - Brajesh Singh on November 3, 2020 at 10:05 pm in reply to: Display the counter of the photo being viewed by the user #34268
Hi Arslan,
Thank you for the reply.I am sorry, MediaPress does not count number of downloads or number of views currently.
Regards
Brajesh - Brajesh Singh on November 3, 2020 at 10:04 pm in reply to: Buddycommerce "shop" tab slug can't be customized #34267
Hi Alex19,
Thank you for the reply.These are configuration issues. You need to make sure tabs are only visible to profile owner.
If you are comfortable sharing admin access, Please do and I will update the settings fro you.
Regards
Brajesh - Brajesh Singh on November 3, 2020 at 10:02 pm in reply to: Media and Other Tabs Not Displaying in BuddyPress User Profile Tabs Creator Pro #34266
Hi Michael,
I am sorry for the inconvenience.There was an issue with Geodirectory causing issue with media buttons, so we disabled it. It was a side effect.
Please allow us 24 hours to push and update for the profile tabs .
the User Profile Tabs do not show the Subnav tab heading when on the Main tab heading on the front end (if you would like a photo of that as well please let me know).
Yes, Please share a screenshot. It is most probably some configuration issue.
Thank you
Brajes - Brajesh Singh on November 2, 2020 at 4:13 pm in reply to: How does a deactivated user appear? #34253
Hi Carsten,
Thank you for the question.If your theme has normal hooks, the visitor will see the message and get redirected to their own profile.
Sorry, that profile is not accessibleIf the visitor is not logged in, they will get redirected to the site home page.
Regards
Brajesh - Brajesh Singh on November 1, 2020 at 7:02 pm in reply to: [Resolved] Buddypress moderation tool is not working. #34248
Hi Virender,
Thank you for the patience.I am sorry for the confusion. We are whitelisting content from Super admins by default. Since you are not on a multisite, all users with “Administrator” role is considered super admin by WordPress and that’s why the error was happening.
Do you want to allow reporting posts from the super admins too or will you be using authors/editors roles for posting content?
Regards
Brajesh - Brajesh Singh on November 1, 2020 at 6:38 pm in reply to: [Resolved] Make user testimonials only available to specific profile types in BuddyBoss #34247
Hi Maarten,
Thank you for the patience.
We have released a new update.With this update, you may use a few lines of code to control who can have testimonials.
Here is an example
/** * Enable/Disable testimonials for certain member types. */ add_filter( 'bp_testimonial_enabled_for_user', function ( $enabled, $user_id ) { $allowed_member_types = array( 'student', 'teacher', ); $user_types = bp_get_member_type( $user_id, false ); if ( ! empty( $user_types ) && array_intersect( $allowed_member_types, $user_types ) ) { $enabled = true; } else { $enabled = false; } return $enabled; }, 10, 2 );Please update the allowed_member_type with correct values an dput this code in your bp-custom.php(wp-content/plugins/bp-custom.php) or in your theme’s functions.php
Regards
Brajesh - Brajesh Singh on November 1, 2020 at 6:25 pm in reply to: [Resolved] Circles plugin causing critical error #34246
Hi Maarten,
Thank you for the patience. we have pushed a release. Please let me know if it works for you or not?Regards
Brajesh - Brajesh Singh on November 1, 2020 at 9:20 am in reply to: [Resolved] Buddypress moderation tool is not working. #34242
Hi Virender,
Thank you for the reply.There are only 3 possible cases when the above message is shown:-
1. The post type is not enabled in reportable:- You already have it.
2. The author of the post is white listed. I do not see anyone whitelisted in your settings
3. Or the Reportable type is not valid(not registered as active type).I am not sure which one of these is happening.
Can you please grant me temporary access to your server(may be staging server) where I can debug it?
Thank you
Brajesh - Brajesh Singh on November 1, 2020 at 12:12 am in reply to: Mediapress Transcoder — Transcoder needs FFMPEG #34238
Hi Roni,
No, The local transcoder only works with files hosted on the same server. We are working on a better micro service to change this in future.Regards
Brajesh