Replies
- Brajesh Singh on February 26, 2020 at 5:44 pm in reply to: Can I Add Media Without a Gallery? #27911
Hi Christian,
Thank you for the question.Currently, It is not feasible in MediaPress. It is coming in near future though.
Regards
Brajesh - Brajesh Singh on February 26, 2020 at 5:38 pm in reply to: Substituting MediaElement.js player #27910
Hi Tony,
You will need to override the templates.Please copy the specific templates from mediapress and you can override it in your theme.
We are using the the
wp_video_shortcode()which uses MediaElement js.
Here is guide
https://buddydev.com/mediapress/mediapress-basics/overriding-mediapress-activity-upload-icons/The te,mplate of your interest are:-
mediapress/default/gallery/views/grid-video.phpmediapress/default/gallery/media/views/video.php
mediapress/default/gallery/media/views/lightbox/video.php
Regards
Brajesh - Brajesh Singh on February 25, 2020 at 11:06 am in reply to: Restrict Domain Emails uncertain if working properly #27904
Hi,
The user with protonmail was able to register as you had both of these plugin active. It seems to me the Ban registration allowed bypassing the Restrict domains.Once you disable the Ban registration, you can try using any other email domain not in your list(say example.com) to verify if the account is restricted from creation or not.
Regards
Brajesh - Brajesh Singh on February 25, 2020 at 10:58 am in reply to: Restrict Domain Emails uncertain if working properly #27902
Please disable the “WordPress Ban Registration Domain” and then check. I am assuming that these two plugins do not co-operate.
Regards
Brajesh - Brajesh Singh on February 25, 2020 at 10:47 am in reply to: Restrict Domain Emails uncertain if working properly #27900
Hi,
I am sorry for the inconvenience.Can you please check if you are using Restrict email domain and not ban email domain plugin?
https://buddydev.com/plugins/wp-ban-registration-domain/
We have 2 similar plugin with different purpose and this might be causing the confusion.
Regards
Brajesh - Brajesh Singh on February 24, 2020 at 8:58 pm in reply to: [Resolved] BuddyPress Private Messaging – disable addition of image #27896
You are welcome 🙂
- This reply has been marked as private.
- 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.