Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Tinymce icon missing in fress install on umbraco 6.1.3 on sqlserver 2012
Hi!
Thank you for trying the package and posting this issue!
Which icons are missing? Can you provide a screenshot? What version of Newsletter Studio are you running?
// Markus
Studio:1.3.6
icons in tinymcy : add a custom field,insert predefined templete ...
section in tinymce is missing, after that I add it manuall it's appears.
So it was not added during the installation? Sounds strange - that should work. But did you solve the problem but adding them manually? Thats great! I'll have a look at this to make sure that nothing is wrong with the installation package.
Could you post the config section that should be in the tinymceconfig?
I have the same problem
In tinyMceConfig.config
In <commands>
<command>
<umbracoAlias>newsletterstudioPlugin</umbracoAlias>
<icon>newsletterstudio/images/newsletterstudio-add.gif</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">newsletterstudio</tinyMceCommand>
<priority>1100</priority>
</command>
<umbracoAlias>template</umbracoAlias>
<icon>images/editor/template.png</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">template</tinyMceCommand>
<priority>1101</priority>
<umbracoAlias>newsletterstudiourlcontent</umbracoAlias>
<icon>newsletterstudio/images/internet-btn.gif</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">newsletterstudiourlcontent</tinyMceCommand>
<priority>1102</priority>
Inside <plugins> section add 3 lines:
<plugin loadOnFrontend="true">newsletterstudio</plugin>
<plugin loadOnFrontend="true">newsletterstudiourlcontent</plugin>
<plugin loadOnFrontend="false">template</plugin>
inside <customConfig> add
<config key="newsletterstudioContentTemplates">
<![CDATA[',
template_templates:[
{
title : "Two columns",
src : "/umbraco/newsletterstudio/templates/two-column.html",
description : "Header, two columns"
},
title : "Three columns and sidebar",
src : "/umbraco/newsletterstudio/templates/three-coloumn-sidebar.html",
description : "Header, two columns and a sidebar"
title : "Three columns and sidebar + divider",
src : "/umbraco/newsletterstudio/templates/three-coloumn-sidebar-divider.html",
description : "Header, two columns, sidebar and a divider image"
}
],
template_popup_height : '500]]>
</config>
After that need define in NewsLettersStudio rich text editor to allow new commands.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
TinyMce Icons Missing in 6.1.3 install
Tinymce icon missing in fress install on umbraco 6.1.3 on sqlserver 2012
Hi!
Thank you for trying the package and posting this issue!
Which icons are missing? Can you provide a screenshot? What version of Newsletter Studio are you running?
// Markus
Studio:1.3.6
icons in tinymcy : add a custom field,insert predefined templete ...
section in tinymce is missing, after that I add it manuall it's appears.
Hi!
So it was not added during the installation? Sounds strange - that should work.
But did you solve the problem but adding them manually?
Thats great! I'll have a look at this to make sure that nothing is wrong with the installation package.
Could you post the config section that should be in the tinymceconfig?
I have the same problem
In tinyMceConfig.config
In <commands>
<command>
<umbracoAlias>newsletterstudioPlugin</umbracoAlias>
<icon>newsletterstudio/images/newsletterstudio-add.gif</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">newsletterstudio</tinyMceCommand>
<priority>1100</priority>
</command>
<command>
<umbracoAlias>template</umbracoAlias>
<icon>images/editor/template.png</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">template</tinyMceCommand>
<priority>1101</priority>
</command>
<command>
<umbracoAlias>newsletterstudiourlcontent</umbracoAlias>
<icon>newsletterstudio/images/internet-btn.gif</icon>
<tinyMceCommand value="" userInterface="" frontendCommand="">newsletterstudiourlcontent</tinyMceCommand>
<priority>1102</priority>
</command>
Inside <plugins> section add 3 lines:
<plugin loadOnFrontend="true">newsletterstudio</plugin>
<plugin loadOnFrontend="true">newsletterstudiourlcontent</plugin>
<plugin loadOnFrontend="false">template</plugin>
inside <customConfig> add
<config key="newsletterstudioContentTemplates">
<![CDATA[',
template_templates:[
{
title : "Two columns",
src : "/umbraco/newsletterstudio/templates/two-column.html",
description : "Header, two columns"
},
{
title : "Three columns and sidebar",
src : "/umbraco/newsletterstudio/templates/three-coloumn-sidebar.html",
description : "Header, two columns and a sidebar"
},
{
title : "Three columns and sidebar + divider",
src : "/umbraco/newsletterstudio/templates/three-coloumn-sidebar-divider.html",
description : "Header, two columns, sidebar and a divider image"
}
],
template_popup_height : '500]]>
</config>
After that need define in NewsLettersStudio rich text editor to allow new commands.
is working on a reply...