@wpyogi,
From what I gather, @morktron is in the right place. He wants to know if he can somehow use the shortcodes or otherwise embed video for S3 into his help documents. I’d like to know this too. I have a Woo Theme, which has shortcodes, but I can’t get the “content toggle” shortcode to work. My hope is to use HTML5 video embed tags to have the videos toggled on click.
Is there a place where the WP-Help code is enqueuing a script too late? Or where the shortcode scripts need to be enqueued first?
@morktron, if you use code something like this, it will embed the video in your help document:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
The only thing is, if you have many videos, that help document will take a lot to load, and it will require a lot of calls to the server. Which is why I’d hoped to incorporate a media content toggle shortcode to have the page load the titles of the videos.