We are able to add only
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Can you check this: https://lhotsetechnologies.com/blog/enable-rte-plugins-for-content-fragment/ ?
Hi,
Can you check this: https://lhotsetechnologies.com/blog/enable-rte-plugins-for-content-fragment/ ?
Hi @ssin93 ,
To add additional plugins like Color Picker, Anchor, Special Characters, Styles, and Paragraph Format to the RichText field of a Content Fragment in AEM, you need to customize the RichText Editor configuration in AEM. Here’s a step-by-step guide to achieve this:
Access the RichText Editor Configuration:
Navigate to the Correct Configuration Node:
Create/Modify the Configuration Node:
Add the Desired Plugins:
{
"features": [
"bold",
"italic",
"underline",
"strikethrough",
"subscript",
"superscript",
"editSource",
"justifyLeft",
"justifyCenter",
"justifyRight",
"justifyBlock",
"oList",
"uList",
"indent",
"outdent",
"link",
"unlink",
"anchor",
"image",
"removeFormat",
"undo",
"redo",
"specialCharacters",
"styles",
"paragraphFormat",
"color"
]
}
Example Node Structure: The node structure in CRXDE Lite should look something like this:
/apps
/settings
/wcm
/policies
/editors
/contentfragment
/rte
/config
/full
- features [String Array]
Where features is a property with the array of features listed above.
Save and Test:
Custom Styles: If you want to add custom styles, you might need to configure a custom style node:
Color Picker Configuration:
{
"styles": [
{
"name": "Custom Style 1",
"cssName": "custom-style-1"
},
{
"name": "Custom Style 2",
"cssName": "custom-style-2"
}
]
}
If additional configuration is needed for specific plugins (like special characters or color picker), you might need to refer to the plugin documentation and add necessary configurations under appropriate nodes.
By following these steps, you should be able to customize the RichText field in Content Fragments to include plugins like Color Picker, Anchor, Special Characters, Styles, and Paragraph Format, making the RichText Editor more powerful and flexible for content authors.
@ssin93 Did you find the suggestions from users helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies