1

I am having difficulty fine-tuning TinyMCE editor in a custom component in Joomla! v. 3.4 Front-end and would appreciate any advice to set it up. I am loading this editor through XML in model's "forms" folder. As seen in my picture, I have marked a portion of it with red rectangle. Is there any setting for editor form field to omit the red marked portion? Furthermore, is it possible to omit the "Toggle Editor" button in the bottom of the editor? Thanks in advance.

Screenshot: http://screenshot.net/vdnx3s3

1 Answers1

0

This option allows you to configure the menus you want to appear in the menu bar.

Disable all menus

tinymce.init({
    menubar : false
});

for "toggle editor" button look for link remove toggle editor button

Community
  • 1
  • 1
anagha affinity
  • 273
  • 1
  • 3
  • 14
  • "tinyMCE.init" works well if I hack the core Joomla file. I tried to override "tinyMCE.init" using this code "", which actually did not work. Can you please give me any further hint if "tinyMCE.init" can be overridden? BTW, "Toggle editor" works like a charm. – ManzurAhmed Mar 17 '15 at 23:03