Forum

Thread tagged as: Question, Problem

Help With CKEditor

Hi, is there a way to enable CKEditor in source mode automatically, i.e. without <p></p> placed around the text added? Also, how do I enable <sup></sup> and <sub></sub> buttons?

Client is insisting on having <sup>®</sup> after their product names globally and I'm using the product names in a <h1></h1> tags. I can click 'source' in the editor and type 'Product Name<sup>®</sup>' and save and it works, but if I go back to edit the region when I save the editor reverts to <p>Product Name®</p> !!

Or any alternative solutions welcome... thanks.

Chris Jones

Chris Jones 0 points

  • 4 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

You can find information on configuring editors here: https://docs.grabaperch.com/api/editors/

For any specific CKEditor questions, you'd need to ask them rather than us.

Try this along what Drew said

config.startupMode = 'source';

and

toolbar:[ {name: 'lineone',
   groups: [ 'textface', 'textstyle', 'parastyle', 'specialcontent', 'html' ],
   items: [ 'Format','Font','FontSize', 'TextColor','BGColor',
      '-','Bold','Italic','Underline','Strike',
      '-','NumberedList','BulletedList','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight',
      '-','Link','Unlink','Table','Image',
      '-','Source'
     ]
   },
   {name: 'linetwo',
    groups: [ 'cutcoppaste', 'unredo', 'findreplace', 'subsup', 'block', 'special' ],
     items: [ 'Cut','Copy','Paste','PasteText','PasteFromWord',
        '-','Undo','Redo',
        '-','Find','Replace',
        '-','Subscript','Superscript',
        '-','JustifyBlock','Blockquote',
        '-','HorizontalRule','Smiley','SpecialChar'
         ]
   }
  ]

AND check the default config.js file.

Drew, Lexi, many thanks for your help.