November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Hi Callie,
I think "Imagemap" is discontinued for 7.5 and later versions of Episerver.
And to enable "HTML" tag you need to enable it in initialization module.
[InitializableModule] [ModuleDependency(typeof(TinyMceInitialization))] public class TinymceCustomInitialization : IConfigurableModule { public void ConfigureContainer(ServiceConfigurationContext context) { // browser console to see settings: window.tinymce.settings; context.Services.Configure<TinyMceConfiguration>(config => { config.Default() .AddPlugin("code"); } public void Initialize(InitializationEngine context) { } public void Uninitialize(InitializationEngine context) { } }
Hello,
We have migrated from EPiServer 7.1 to version 7.5 and there are some mismatches, like "Imagemap" and "HTML" buttons from RichTextBox (XHtmlString) in CMS Edit mode are missing.
I've noticed that in the CMS->Admin->Config->Tool Settings -> Plug-in Manager there is no ImageMap plugin.
How can I include those functionalities?
Thanks in advance!