从“图像列表”中选择图像后,会显示图像“预览”和 '尺寸'下拉列表,选中默认值'原始'。 如何将所选默认设置为“预览(400x400)”,因此对于HTML内容具有“myPhoto.png / image_preview”。
答案 0 :(得分:2)
在Products / TinyMCE / skin / tinymce / plugins / ploneimage / ploneimage.htm.pt中查看TinyMCE蛋内部
更改此行(95):
<option tal:repeat="item portal_tinymce/getImageScales" tal:attributes="value item/value" tal:content="item/title" />
于:
<option tal:repeat="item portal_tinymce/getImageScales" tal:attributes="value item/value; selected python: 'Preview' in item['title']" tal:content="item/title" />
答案 1 :(得分:0)
TinyMCE使用Plone全局图像处理设置进行图像缩放/标记渲染。在Controlpanel上查找&gt;图像处理。
网址应为$ YOUR_PLONE_URL / @@ imaging-controlpanel