Iv重新安装了TYPO3 6.2,在用户设置中启用了RTE,在扩展管理器中启用了RTE图像。
我试图通过RTE添加图像,但我坚持将所有按钮添加到默认配置。
Iv在用户/页面TSConfig中尝试了下面的配置,但没有成功。
这是我在RTE窗口中看到的,没有任何更改:
我想启用如下所有编辑选项:
用户/页面配置:

    ## Default RTE options
RTE.default {
        ## Disable RTE
    disable = 0

    addButtons = *

        ## Disable Typo3 specific browsers
    disableTYPO3Browsers = 0

        ## Default target for links
    defaultLinkTarget >

        ## Disable contextual menu
    disableContextMenu = 0
    disableRightClick = 0

        ## Display status bar
    showStatusBar = 1

        ## Disable color picker
    disableColorPicker = 0

        ## Disable color selector
    disableSelectColor = 0

        ## Specifies that Mozilla/Firefox should use style attributes or not. When enabled, Mozilla/Firefox use span tags with style attributes rather than tags such as b, i, font, etc.
    useCSS = 0

        ## Disable enter key for new paragraphs creation
    disableEnterParagraphs = 0

        ## Remove trailing BR if any
    removeTrailingBR = 1
}

    ## Frontend RTE configuration
RTE.default.FE < RTE.default

    ## Full screen for bodytext (tt_content)
TCEFORM.tt_content.bodytext.RTEfullScreenWidth= 100%

最佳答案

必须在扩展管理器中启用在RTE中使用图像。导航到扩展管理器,选择扩展“RTE”,单击“配置”按钮并选中“启用图像”框。

关于html - TYPO3 6.2 RTE无法添加按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24781287/

10-09 16:02