Site structure
Version 7.x > Site structure > remove browse server from ckeditor View modes: 
User avatar
Member
Member
sh_dev - 5/8/2013 1:50:47 PM
   
remove browse server from ckeditor
Does anyone know how to remove the 'Browse Server' option when using the ckeditor?
If possible I only want to enable it if the user is in a particular role.


User avatar
Member
Member
kentico_edwardh - 5/8/2013 2:21:50 PM
   
RE:remove browse server from ckeditor
Hello,

Which exact button you are referring to, as there is no “Browse Server” button within the default editor? You can control which buttons are displayed on the editor via Administration -> UI personalization -> Editor, and select which Role should have access to the default buttons.

Best Regards,
Edward Hillard

User avatar
Member
Member
sh_dev - 5/8/2013 2:54:09 PM
   
RE:remove browse server from ckeditor
Hi. Thanks for the quick response. I don't think the above suggestion will resolve the issue. I am using a custom toolbar set as per standard implementation for my users.
i.e.  Editor.ToolbarSet = "Forum";

Wtihin the /CMSAdminControls/CKEditor/config.js are the toolbar sets.
  config.toolbar_Forum = [
['Bold', 'Italic', '-', 'InsertLink', 'InsertUrl', 'InsertImageOrMedia', 'InsertImage', 'InsertQuote', '-', 'NumberedList', 'BulletedList', '-', 'TextColor', 'BGColor']
];

When the user click on the insertLink, he/she is presented a dialogue box that contains the button 'Browse Server'.

I would like to know how to disable/remove that button.

I found this suggestion but don't think it would apply in this case.
Browse Server

Thanks.
mac

User avatar
Member
Member
kentico_sandroj - 5/10/2013 11:25:12 AM
   
RE:remove browse server from ckeditor
Hi Mac,

As per our conversation, you were able to resolve this issue by making the following change:

  config.toolbar_Forum = [
['Bold', 'Italic', '-', 'Link', 'InsertUrl', 'InsertImageOrMedia', 'InsertImage', 'InsertQuote', '-', 'NumberedList', 'BulletedList', '-', 'TextColor', 'BGColor']
];

Changed to:

  config.toolbar_Forum = [
['Bold', 'Italic', '-', 'InsertLink', 'InsertUrl', 'InsertImageOrMedia', 'InsertImage', 'InsertQuote', '-', 'NumberedList', 'BulletedList', '-', 'TextColor', 'BGColor']
];


Result: Browse Server button is no longer available.

Thank you for taking the time to explain how this issue was resolved, this post should prove to be helpful to other customers facing this issue.

Regards,
Sandro