mysomic
mysomic

Reputation: 1567

CKEditor - overriding a core plugin

How do I override a core CKEditor (v3) plugin with my own implementation?

Upvotes: 1

Views: 1696

Answers (1)

Evan Krall
Evan Krall

Reputation: 3126

Two options:

  1. Replace the core plugin's folder in _source/plugins.
  2. Name your plugin something different, load it with config.extraPlugins, and prevent the core plugin from loading with config.removePlugins

Upvotes: 4

Related Questions