Replies
- Brajesh Singh on February 24, 2020 at 4:36 pm in reply to: [Resolved] Support for BP Events Calendar? #27893
Hi Beuza,
Thank you for asking.I did not look into it any further. I am not sure if Torben was able to find something.
Regards
Brajesh - Brajesh Singh on February 24, 2020 at 4:34 pm in reply to: [Resolved] BuddyPress Private Messaging – disable addition of image #27892
Hi Nick,
Please use the following code./** * Remove image button from the BP Nouveau template's compose message. */ add_filter( 'mce_buttons', function ( $buttons ) { // make sure this is for the message. if ( ! has_filter( 'mce_buttons', 'bp_nouveau_messages_mce_buttons' ) ) { return $buttons; } return array_diff( $buttons, array( 'image' ) ); }, 20 );Regards
Brajesh You are welcome.
- Brajesh Singh on February 24, 2020 at 4:20 pm in reply to: [Resolved] BuddyPress Activity Shortcode exclude #27890
Hi Philippe,
You are welcome.
Please use the type mpp_media_upload to include MediaPress updates.
Regards
Brajesh Hi Philippe ,
Thank you for reporting.Can you please login to our demo site and see if the issue exists?
Thank you
BrajeshHi Amir,
Welcome to BuddyDev.I appreciate your feedback.
I am sorry but I do not think we will be able to do an email availability checker. It will put the privacy of users at risk.
The users are identifiable by their email and by creating an email availability checker, we are making it easier to reveal their email. I think, We will better avoid it.
If you want, you can implement it by cloning code from the username availability checker and using email_exists() for checking the email.
Regards
Brajesh- Brajesh Singh on February 24, 2020 at 4:11 pm in reply to: Buddypress Dynamic User Tab Content #27887
Hi Sean,
Welcome to BuddyDev.The plugin is an addon for BuddyPress User Profile Tabs Creator
https://buddydev.com/plugins/buddypress-user-profile-tabs-creator-pro/Are you using both these plugin together or just the dynamic tab content one?
Please let me know and I will assist.
Regards
Brajesh Hi Vivek,
I am sorry I missed it earlier.1. Yes, It is possible to limit to new posts by using activity action but you will not be able to filter(Unless the plugin adds their own type).
By default the type is ‘new_blog_post’.
Please consult with geodir plugin team and see if they are adding their own specific activity type, If yes, you can use them.
2. Limiting to certain user ids. Please use the ‘role’ parameter for this. Currently, we do not have the option to exclude.
Regards
Brajesh- Brajesh Singh on February 24, 2020 at 6:34 am in reply to: Local Transcoder – Would like video in orginal resolution up to 1080 x 1920 #27879
Hi Tony,
Please do let me know what you find.Regards
Brajesh - Brajesh Singh on February 23, 2020 at 10:12 pm in reply to: Local Transcoder – Would like video in orginal resolution up to 1080 x 1920 #27875
Hi,
Is there any chance you modified the ffmpeg command in the plugin? We are not specifying any dimension, and the conversion happens server side not the client side, so it does not make sense.If a video is of higher resolution, I do not see any reason why it will be scaled to 480×360(Did you try opening the video directly and check its resolution in the browser). The video size may be restricted by our player(we are applying size on the player via css).
Also, from your previous reply:- You mentioned that if you upload same video from desktop or mobile, they get converted with different resolution. Well, that is not feasible. The server does not care from where the video came. Please recheck it.
Also, there is a way to maintain the same quality if you want to. Using the -sameq flag.
Regards
Brajesh