tinyMCE theme_advanced_blockformats
Running 6.7.2 SP2
I have been trying to add the theme_advanced_blockformats option to modify the default formatselect elements from the dropdown in tinyMCE. I tried modifying the livesite-resource-config.xml file with the following...
<prop key="themeAdvancedBlockformats">p,h2,h3,h4</prop>
and
<prop key="theme_advanced_blockformats">p,h2,h3,h4</prop>
The moxiewiki provides the following example.
tinyMCE.init({
...
theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6,blockquote,dt,dd,code,samp"
});
But it seams that the livesite-resource-config.xml uses its own variable for the tinyMCE config i.e.
<prop key="themeAdvancedButtons1Add">separator,insertdate,inserttime,preview,separator,forecolor,backcolor</prop>
as opposed to the suggested.
theme_advanced_buttons1_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",
Has anyone had any luck with this?
Thanks