1

我已经为 Joomla 下载了 tinymce 编辑器的插件。我已将所有文件粘贴到 Joomla 下 tinymce 的插件文件夹中。之后,自述文件声称:

Then in the tinymce init function make sure you include the Bold lines.

<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
theme_advanced_toolbar_location : "top",
auto_resize:false,
extended_valid_elements: "textarea[name|class|cols|rows]", 
remove_linebreaks : false, 
width:720,
plugins : 'preview,codehighlighting',
theme_advanced_toolbar_align : "right",
theme_advanced_buttons1_add : " fontselect,fontsizeselect,zoom",
theme_advanced_buttons2_add : "preview,separator,forecolor,backcolor",
theme_advanced_buttons3_add_before : "tablecontrols, codehighlighting"

});
</script>

我需要在哪里粘贴该代码?

4

2 回答 2

2

您提供的网站中的说明写得不好,因此我不太确定您必须在哪里插入该代码在您的问题中。

我个人会使用Code Highlighter Joomla 扩展。我们在我们的网站上使用了他,它就像一个魅力。

于 2012-10-23T19:44:08.790 回答
2

您需要将此类代码放置在存储/读取 tinymce 配置的位置。要找出它在哪里 -这是一个带有详细解释的教程。

于 2012-10-24T07:37:57.530 回答