Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Is there a way to remove icons from the text editor?
Hi markpridham,
I'm sorry, but I don't follow you. Please explain using some screenshots.
Hi,
I would like to limit the amount of formatting that the user can use. For instance, I would like to remove the "code" and "source code" icons.
Hi markpridham,
There is no such option for disabling each icon. You need to use custom CSS code.
For instance, I would like to remove the "code" and "source code" icons.
In this case, you should use the following CSS code. Put it in Dashboard > Forums > Settings > Styles > "Custom CSS Code" textarea.
#wpforo #wpforo-wrap .mce-toolbar .mce-btn button i.mce-i-code{
display: none;
}
#wpforo #wpforo-wrap .mce-toolbar .mce-btn button i.mce-i-codesample{
display: none;
}
Don't forget to delete all caches and do CTRL + F5 on the frontend before checking.
Perfect. Thanks!