【问题标题】:How do I remove the download button from WP mediaelement.js如何从 WP mediaelement.js 中删除下载按钮
【发布时间】:2017-01-18 15:55:26
【问题描述】:

Need Help Removing Download Button_Image

我在我的 WP 页面上附加了媒体播放器的图像。它刚刚出现在我的播放器上,之前(上个月)没有。我还没有为 mediaelement.js 做任何插件升级,所以我不知道这是从哪里来的。我想删除下载按钮,但我不确定在 WordPress 中的哪个位置以及如何隐藏它。

<td class="files">  <audio id="wp_mep_2" controls="controls" preload="none">

        <source src="http://xxxxxxx.org/?page_id=1743&amp;show&amp;file_name=JesusistheDifferenceMaker.mp3" type="audio/mp3">
        <object width="250" height="30" type="application/x-shockwave-flash" data="http://xxxxxxx.org/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
            <param name="movie" value="http://xxxxxxx.org/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
            <param name="flashvars" value="controls=true&amp;file=http://xxxxxxx.org/?page_id=1743&amp;show&amp;file_name=JesusistheDifferenceMaker.mp3">           
        </object>       
    </audio>
<script type="text/javascript">
jQuery(document).ready(function($) {
    $('#wp_mep_2').mediaelementplayer({
        m:1

        ,features: ['playpause','current','progress','duration','volume','tracks','fullscreen']
        ,audioWidth:250,audioHeight:30
    });
});
</script>
</td>

【问题讨论】:

  • 有谁知道怎么去掉下载按钮?

标签: wordpress mediaelement.js


【解决方案1】:

看起来 mediaelement.js 没有初始化,浏览器使用默认的 html5 播放器。 (在 chrome 中)您可以从默认的 mediaelement.js 皮肤中识别 http://www.mediaelementjs.com/

查看w3schools example默认播放器在哪里

观看视频示例:

Without mediaelement.js

With mediaelement.js

我建议您检查或记录初始化函数或运行一些调试 enablePluginDebug:true 类似 mediaelement 选项。

【讨论】:

    猜你喜欢
    • 2019-09-28
    • 2020-06-13
    • 1970-01-01
    • 2020-09-04
    • 1970-01-01
    • 2012-03-29
    • 1970-01-01
    • 2020-11-08
    • 1970-01-01
    相关资源
    最近更新 更多