- Posts: 87
- Thank you received: 0
Kunena 6.2.2 Released with module Latest 6.0.5, module Kunena Stats 6.0.5, Kunena Discuss 6.0.5 and Kunena Search module 6.0.5
The Kunena team has announce the arrival of Kunena 6.2.2 [K 6.2.2] which is now available for download as a native Joomla extension for J! 4.3.x/4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2
Solved how to hide buttons in editor?
- carsten888
-
Topic Author
- Offline
- Senior Member
Less
More
2 years 9 months ago - 2 years 9 months ago #1
by carsten888
how to hide buttons in editor? was created by carsten888
There are just soooo many buttons in the editor (just click reply and you'll see). I would only like to show only a few on my forum. How to hide the buttons which are useless on my forum?
I have checked the configuration and disabled things like soundscloud- and ebay-embedding. But it still shows that button.
I checked the wiki, and searched this forum but found no answer.
joomla 3.9.24
Kunena 5.2.2
I have checked the configuration and disabled things like soundscloud- and ebay-embedding. But it still shows that button.
I checked the wiki, and searched this forum but found no answer.
joomla 3.9.24
Kunena 5.2.2
Last edit: 2 years 9 months ago by carsten888.
Please Log in or Create an account to join the conversation.
2 years 9 months ago #2
by rich
Replied by rich on topic how to hide buttons in editor?
Go in the backend to your Kunena template (tab) BBCode and disable the unneeded buttons.
The following user(s) said Thank You: carsten888
Please Log in or Create an account to join the conversation.
- carsten888
-
Topic Author
- Offline
- Senior Member
Less
More
- Posts: 87
- Thank you received: 0
2 years 9 months ago - 2 years 9 months ago #3
by carsten888
Replied by carsten888 on topic how to hide buttons in editor?
Last edit: 2 years 9 months ago by carsten888.
Please Log in or Create an account to join the conversation.
2 years 9 months ago #4
by rich
Replied by rich on topic how to hide buttons in editor?
Try followings:
Go to folder /media/kunena/core/js and copy the ckeditor_config.js so that you have a backup.
Then open the original file and replace the code in lines 14 - 31
from
to
Go to folder /media/kunena/core/js and copy the ckeditor_config.js so that you have a backup.
Then open the original file and replace the code in lines 14 - 31
from
Code:
config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
{ name: 'forms', groups: [ 'forms' ] },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
{ name: 'links', groups: [ 'links' ] },
{ name: 'insert', groups: [ 'insert' ] },
{ name: 'social', groups: [ 'social' ] },
'/',
{ name: 'styles', groups: [ 'styles' ] },
{ name: 'colors', groups: [ 'colors' ] },
{ name: 'tools', groups: [ 'tools' ] },
{ name: 'others', groups: [ 'others' ] },
{ name: 'about', groups: [ 'about' ] }
];
Code:
config.toolbarGroups = [
{ name: 'document', groups: [ 'document', 'doctools' ] },
{ name: 'editing', groups: [ 'editing' ] },
{ name: 'forms', groups: [ 'forms' ] },
{ name: 'basicstyles', groups: [ 'basicstyles' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'paragraph' ] },
{ name: 'links', groups: [ 'links' ] },
{ name: 'insert', groups: [ 'insert' ] },
{ name: 'styles', groups: [ 'styles' ] },
{ name: 'colors', groups: [ 'colors' ] },
{ name: 'tools', groups: [ 'tools' ] },
{ name: 'about', groups: [ 'about' ] }
];
The following user(s) said Thank You: carsten888
Please Log in or Create an account to join the conversation.
- carsten888
-
Topic Author
- Offline
- Senior Member
Less
More
- Posts: 87
- Thank you received: 0
2 years 9 months ago #5
by carsten888
Replied by carsten888 on topic how to hide buttons in editor?
Please Log in or Create an account to join the conversation.
Time to create page: 0.302 seconds