Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Imagemap and HTML buttons missing

Vote:
 

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!

#206787
Aug 29, 2019 18:56
Vote:
 

Hi Callie,

I think "Imagemap" is discontinued for 7.5 and later versions of Episerver.

https://world.episerver.com/forum/developer-forum/-Episerver-75-CMS/Thread-Container/2014/6/ImageMap-for-75/

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) { }
    }
   

#206789
Aug 29, 2019 19:17
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.