Disable list type dropdowns in tinyMce
d
Hi, does anyone know how to disable the little arrow dropdowns next to the list formatting buttons (the ones for creating
<ol>
and
<ul>
) in the RTE datatype Umbraco 12? I don't want editors to be able to choose the list style types (bullets, square, circle etc) which seems to be what the default UI allows now. I just want the buttons without the additional options.
d
Hi there! I know how to do this. You can update your rich text editor settings in appsettings like this:
Copy code
json
"RichTextEditor": {
    "CustomConfig": {
        "advlist_bullet_styles": "default",
        "advlist_number_styles": "default"
    }
}
You can find the RichTextEditor config section under
Umbraco:CMS
in your appsettings.json file
d
Perfect, thanks 🙂
25 Views