Topic: How can I disable video upload?
I prefer to allow members to embed only...save bandwidth that way..
You are not logged in.
I prefer to allow members to embed only...save bandwidth that way..
lib.account_videos.php, line ~288:
$video_types = array_merge(array('' => $LANG['videos']['regular_video']), vld_vendors_list());
change it to:
$video_types = vld_vendors_list();
Thanks Radioact, was also looking for this
Cheers Chris
Even after this, the Select Video option still appears even though the List only contains youtube, vimeo, etc..
How do you remove this, and have it behave in such a way that the url text field shows once the add video page loads?
initiate set_video_type(1); function call at the bottom of your account_videos_edit.tpl
thanks, got it working:)
Gukkie rocks!
This is great, I had all videos disabled but now I can at least allow embeds
Thanks guys!