Trying to figure out the file type for this in the editor options. I am looking at adding below like code that normal goes on config.js to help remove dialog boxes etc. I have snyc the files but no seeing .js or .xml file. Currently just adding it to config.js since I know it works just have to backup before another update.
CKEDITOR.on( 'dialogDefinition', function( ev )
{
CKEDITOR.on( 'dialogDefinition', function( ev )
{
// Take the dialog name and its definition from the event data.
var dialogName = ev.data.name;
var dialogDefinition = ev.data.definition;
ev.data.definition.resizable = CKEDITOR.DIALOG_RESIZE_NONE;
// Check if the definition is from the dialog we're
// interested in (the 'link' dialog).
if ( dialogName == 'link' )....