November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
You can refer TinyMCE editor cutomization documentations here (additional links on that page too for more configuration information).
It will help you to add plugin in TinyMCE.
Any specifics please?
I have added the following into CustomTinyMCEInitialization and also added the linkchecker folder into same folder of tinyMCE in modules\_protected\EPiServer.Cms.TinyMce but doesn't seem to be having any effect.
private const string Plugins = @"code epi-link epi-image-editor epi-dnd-processor
epi-personalized-content print preview searchreplace
autolink directionality visualblocks visualchars linkchecker
fullscreen image link media template codesample table charmap
hr pagebreak nonbreaking anchor toc insertdatetime advlist lists
textcolor wordcount imagetools contextmenu colorpicker textpattern help";
public void ConfigureContainer(ServiceConfigurationContext context)
{
config.Default()
.Width(0)
.Menubar("file edit insert view format table tools")
.AddPlugin(Plugins)
});
}
Here is an example from my working site.
public void ConfigureContainer(ServiceConfigurationContext context)
{
context.Services.Configure<TinyMceConfiguration>(config =>
{
config.Default()
.AddEpiserverSupport()
.AddPlugin(DefaultValues.EpiserverPlugins, "code contextmenu")
.Toolbar("bold italic underline strikethrough subscript superscript epi-link code");
}
}
The other plugins on our site also works except for the LinkChecker. I will be interested to know if anyone has added a premium plugin for TinyMCE separate from the other free plugins.
We have also done custom plugins which were fine so not sure why the premium linkchecker for TinyMCE is not working.
Hey Raquel,
Please refer below article from Episerver-
https://world.episerver.com/add-ons/spellchecker-for-tinymce/configuring-spellchecker-for-tinymce/
Thanks
Ravindra
We haven't had any luck with this so far. Contacted App Services at epi and the advice is to use epi's tinymce plugins. However, they don't have an equivalent plugin for tinymce's linkchecker.
Epi also recommends getting the same version of the plugins for the built in tinymce. However, as our CMS version uses 4.7.13 and tinymce advised us that they can no longer supply plugins for this version, not sure what to do.
I've tried installing the 4.9.4 plugin into the epi tinymce instance but it doesn't seem to work for me.
Any update on How to include Premium Plugin like powerpaste to Episerver TinyMCE?
We have contacted someone from epi's expert services who said that for this to be self-hosted, we would have to install a TomCat server to host it and point to it so we can use it. It is apparently a complex process and we haven't had the chance to do it yet in our environment. Just hoping that this might point someone else who is having a similar issue to the right direction! If anyone else has done it and can provide better instructions, it'll be much appreciated!
Hi all,
We have obtained a premium license for TinyMCE to be hosted on premises.
We would like to add some of the premium plugins that were included in the license into the WYSIWYG editor for our content authors to use, specifically linkchecker and spellchecker.
Does anyone know how we can achieve this?
Cheers,
Raquel