I am running a RSS feed of vodcasts on my website. Everything loads fine but all of the videos autostart on page load. I edited the zz_custom_url.inc to the following:
function emvideo_zzz_custom_url_info() {
$name = t('Custom URL');
$features = array(
array(t('Thumbnails'), t('No'), ''),
array(t('Autoplay'), t('No'), ''),
array(t('RSS attachment'), t('No'), ''),
);
But the videos still autoplay. Is there another line in this file that I need to edit to stop these videos from autoplaying? All of the autoplay checkboxes are not checked. I even checked them and then unchecked them. I also have cleared the cache multiple times to make sure something in the cache wasn't holding up the site.
Thanks!
Comments
Comment #1
avpadernoThe code you changed is simply the part that shows the features supported by the module. The part the effectively implements them is in another place.
Clearly this is not a bug, as you are not changing the right code; plus, the bug report should be used for the original code, not for the code you modify.
Comment #2
avpadernoComment #3
alex ua commentedHave you tried the dev version of the module? I recall a patch was submitted to address this already, but I may be mistaken. Please report if this is still a problem with the latest version of the code.
Comment #4
sdudenhofer commentedThank you. The new dev version fixed this issue.
Comment #5
avpadernoI would set the status to fixed, so others can see this report, and avoid reporting it again.