Content Fragment New Editor - Disable Richtext button | Community
Skip to main content
Level 2
May 6, 2025
Solved

Content Fragment New Editor - Disable Richtext button

  • May 6, 2025
  • 2 replies
  • 628 views

Hi,
In my project we need to exclude some features present in the richtext toolbar.(example: remove the button for uploading images)
I have read some of the official documentation, but it is not clear to me how to do .
Also how can I test any fix in the local environment? the new interface seems not to be accessible from there.
I hope you can help me,
Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by daniel-strmecki

In case this is supported, I am not aware of it. I raised a feature request already some time ago: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/define-which-rte-plu...

2 replies

AmitVishwakarma
Community Advisor
Community Advisor
May 7, 2025

Hi @30991930w169 ,

Customize the RTE via rtePlugins Configuration:

Step 1: Understand Where It Applies

In AEMaaCS, Content Fragments are authored using Structured Content Models. Each text field (of type multiline) can be configured with RTE plugin settings.


Step 2: Configure rtePlugins in the Content Fragment Model

  - Go to: Tools → Assets → Content Fragment Models

  - Select your model → Click Edit

  - For the field using Rich Text:

    - Select the field (type: Multiline Text)

    - On the right panel, change the "Multiline Text Type" to "Rich Text"

    - Scroll down to "Editor Configuration"

    - Click "Configure"

You’ll now see Rich Text Plugins (rtePlugins) like:

{ "features": "*", "rtePlugins": { "format": { "features": "bold,italic,underline" }, "justify": { "features": "justifyleft,justifycenter,justifyright" }, "links": { "features": "modifylink,unlink" }, "misctools": { "features": "-" }, "image": { "features": "-" } } }

To disable image upload:

Set the "image" plugin to an empty feature list or disable it:

"image": { "features": "-" }

 

Level 2
May 7, 2025

Hi Amit, 

thank for your reply!

I tried to implement what you told me but the "Configure" button is not present in the Content Fragment Model section.

 

daniel-strmecki
Community Advisor and Adobe Champion
daniel-strmeckiCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
May 7, 2025

In case this is supported, I am not aware of it. I raised a feature request already some time ago: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/define-which-rte-plu...