Tagged: mediapress, Videos
Hi Propertytips,
Thank you for confirming.TO enable it for some media type and not others? Yes, it is doable via filter but that won’t work on activity screen.
Please allow me to keep this for our major version. We are committing to next phase of MediaPress from August and I am making a list of things to do. I will be adding it too.
Thank you
BrajeshHi Brajesh,
Thanks for all your help… Will wait till august as suggested
Kind Regards
Hi Brajesh,
Season Greetings!!!
Any update on this please.
Would be great if you can give me a code to temporarily filter out the video uploads for now…. so that I can allow my users to upload images but no videos (except video links). I don’t mind if it will not work on the activity screen for now.
kind Regards
Hi Propertytips,
I am sorry to have kept you waiting for this.1. Please apply one line change to your current MediaPress as shown here
https://github.com/buddydev/mediapress/commit/164e649deabffe963ab76d2dd93aa7653779751f2. Please put this code in your bp-custom.php or theme’s functions.php
add_filter( 'mpp_file_upload_enabled', function ( $enabled, $context ) { if ( 'gallery' !== $context ) { return $enabled; } $gallery = mpp_get_gallery(); if ( $gallery && 'video' === $gallery->type ) { $enabled = false; } return $enabled; }, 10, 2 );
That will make sure that only links can be added for video gallery.
Regards
BrajeshHi Brajesh,
Thank you so much… the code works brilliantly
Looking forward to the next update. I would suggest you make this a standard feature of the mediapress plugin as it takes mediapress to another level… Absolutely love it!!
Kind Regards,
Propertytips
Hi Brajesh,
Just for other users who might be looking for the same solution:
The problem with the activity tab not having upload links for videos and images can be resolved with your new plugin (activity plus reloaded) located here https://buddydev.com/plugins/bp-activity-plus-reloaded/
Kind Regards
Hi Propertytips,
Thank you.I am glad that it worked.
Thank you for sharing for others. It will certainly help.
Regards
Brajesh
The topic ‘ [Resolved] MediaPress Plugin – How Do I Stop Video Uploads?’ is closed to new replies.