1

Topic: How can I disable video upload?

I prefer to allow members to embed only...save bandwidth that way..

2

Re: How can I disable video upload?

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();

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

3

Re: How can I disable video upload?

Thanks Radioact, was also looking for this

Cheers Chris

4

Re: How can I disable video upload?

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?

5

Re: How can I disable video upload?

initiate set_video_type(1); function call at the bottom of your account_videos_edit.tpl

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

6

Re: How can I disable video upload?

thanks, got it working:)

7

Re: How can I disable video upload?

Gukkie rocks!

8

Re: How can I disable video upload?

This is great, I had all videos disabled but now I can at least allow embeds

Thanks guys!