Configuring Tinymce
Jamroom Developers
There are 2 locations the form is intalized
/modules/jrCore/templates/form_editor.tpl
/modules/jrSiteBuilder/templates/form_editor.tpl
The $ul || $li are checks run off the values listed in the quotas "Allowed HTML Tags" found at:
ACP -> MODULES -> CORE -> SYSTEM CORE -> QUOTA CONFIG -> Allowed HTML Tags
If 'ul' and 'li' are not allowed there, then there is no sense in showing the button because they will be stripped out.
Each of those Allowed HTML Tags will be its own variable name in the form_editor.tpl
span,strong,em,a,b,u,i,p,div,br,img,h1,h2,h3,h4,pre,hr,ul,ol,li,sub,sup,table,tbody,th,tr,td
Since both of those files are in core modules that may be updated in the future, the location to adjust them that will be safe from updates is either on the TEMPLATES tab in the acp, eg:
ACP -> MODULES -> CORE -> SYSTEM CORE -> TEMPLATES -> form_editor.tpl -> MODIFY
OR by defining the equivalent file in the skin using the naming override convention. If you wanted to override
/modules/jrCore/templates/form_editor.tpl
Then copy it to the skin and call it:
/skins/YOUR SKIN/jrCore_form_editor.tpl
(But if you ALSO have an override in the TEMPLATES tab, then it will have the last word, so better to pick either the filesystem or the ACP as both can get confusing. I prefer the file system.)
--edit--
Docs: "Altering a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template
updated by @michael: 09/17/17 09:54:38PM
Site's looking great!