scriptmonkey78
Forum Replies Created
-
Forum: Plugins
In reply to: [S3 Video Plugin] VideoJS doesn't autoplay.Hi Anthony, I seem to have run into an issue with videojs as well. It doesnt play in IE10. I found somewhere on the web that you need to specify doctype? But not sure how or where to implement in this plugin.
Forum: Plugins
In reply to: [S3 Video Plugin] Latest version .982 not working for meHi Souce, Look at this link: https://www.ads-software.com/support/topic/the-admin-s3-video-console-doesnt-work. Your answer is in there in one of my posts. The author fixed some of the issues, but did not include all the fixes I mentioned there for some reason.
Forum: Plugins
In reply to: [S3 Video Plugin] The admin S3 Video console doesnt workHappy to help. Great plugin! By far the best user experience for Amazon S3 management I have found. Thanks Anthony.
Forum: Plugins
In reply to: [S3 Video Plugin] The admin S3 Video console doesnt workThe preview-video.php needs to have all <?= replaced with <?php echo. Then it will work.
The delete feature is missing this line of code in the s3-video.php file.
$videoName = $_GET[‘delete’];place this above the
// Delete the video from S3
comment.Hope this helps.
Forum: Plugins
In reply to: [S3 Video Plugin] The admin S3 Video console doesnt workWordPress doesn’t accept shorthand php tags meaning <? or <?= is not accepted. I see these being used.
Here is a reference: https://make.www.ads-software.com/core/handbook/coding-standards/php/
Forum: Plugins
In reply to: [S3 Video Plugin] The admin S3 Video console doesnt workFigured out the issue. You have a typo in your code. Its in the /views/video-management/existing-videos.php code. Line 9.
You currently have:
jQuery(“#videoListTable”).paginateTable({ rowsPerPage: <?echo $pluginSettings[‘s3_video_page_result_limit’]; ?>});It should be:
jQuery(“#videoListTable”).paginateTable({ rowsPerPage: <?php echo $pluginSettings[‘s3_video_page_result_limit’]; ?>});Great plugin though. Thank you much!
Hope this helps someone else.