删除TinyMCE中的升级按钮

问题描述 投票:0回答:2

我在内联模式下使用tinymce,并且是该工具的新手。 我已经用最少的编辑按钮让我的文本字段输入看起来像我想要的那样。 但是,当文本字段处于活动状态时,我对如何从工具栏中删除“升级”按钮感到困惑。

enter image description here

这可能吗?

这是我正在使用的初始化。 我正在 WAMP 服务器上使用自托管社区安装。

`

<script>
    tinymce.init({
        selector: '#addressinput',
        inline: true,
        toolbar: 'bold underline italic superscript',
        menubar: '',
        branding: false,
        force_br_newlines : true,
        min_height: 100
    });
</script>

`

javascript php html tinymce wamp
2个回答
54
投票

此文档链接解释了所涉及的步骤:

https://tiny.cloud/docs/tinymce/6/editor-premium-upgrade-promotion/#premium-upgrade-promotion-option

本质上在初始化期间将promotion 设置为 false 将禁用升级项目:

tinymce.init({
//other configuration,
promotion: false
});


39
投票

TinyMCE 文档包含关闭高级升级促销选项的说明。

© www.soinside.com 2019 - 2024. All rights reserved.