7
Views
1
Comments
Solved
[CKEditor.Reactive] How do I add footnotes plugin?
ckeditor-reactive
Reactive icon
Forge asset by Fábio Fantato

How do I add the footnotes plugin to CKEditor?

I've downloaded the necessary scripts and added them as resources following the same path as other plugins, but I keep getting a resource not found error in the console:

Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "footnotes" was not found at "/CKEditorReactive/ckeditor/plugins/footnotes/plugin.js?t=K24B".

But when I go to https://dev-myoutsystemsdomain.com/CKEditorReactive_BHRPDefaults/ckeditor/plugins/footnotes/plugin.js the script is there.

Why is it appending t=K24B to the resource path?

I'm using a cloned version of the original forge asset.

2022-11-14 17-25-57
Daniel Johnson
Solution

I forgot to change the first line in the CKEditor required script after changing the app name:

var CKEDITOR_BASEPATH = "/CKEditorReactive/ckeditor/";

SHOULD BE:

var CKEDITOR_BASEPATH = "/CKEditorReactive_MyClone/ckeditor/";

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.