Auto-check the poster image for video uploads?
Is there a way to automatically check-mark the poster (thumbnail) image that you can attach to a video upload in the Videos module? I have been checking the settings. But I don't see where to do that.
-
- · CoolUser376
- ·
Solved: You just need to add the word "checked" to the end of the checkbox input lines in modules/boonex/videos/template/form_ghost_template.html:
<input type="checkbox" name="__name_poster__[]" value="{file_id}" onclick="bx_base_general_select_ghost(this, '__name_poster__')" id="__name_poster__-{file_id}" checked />
2nd line:
<input type="checkbox" name="__name_thumb__[]" value="{file_id}" onclick="bx_base_general_select_thumb(this)" id="__name_thumb__-{file_id}" checked />
This is just a fail-safe in case the user forgets to check the box before submitting the video.
-
@CoolUser376 can you change the submit button to remain inactive until the video has been uploaded and converted completely, before a user can submit it?
Another suggestion will also be to show the progress bar to indicate 50% when the video has been uploaded, and only 100% when the video has been converted as well. With this and the above suggestion, the user experience will be enhanced by 500%!
https://unacms.com/d/video-app-bug-fix-needed-and-suggestions
-
Yeah, it would be good if the Publish button were inactive until the video finished uploading. But I don't know how to configure that.