An add-on for Expression Engine 3 or newer to remove HTML tags with the PHP strip_tags() function.
- Copy the striptags directory into your system/user/addons folder
- Login to your Expression Engine installation, go to Developer --> Add-Ons
- Install the Striptags add-on
{exp:striptags}{your_field_with_tags}{/exp:striptags}
The striptags add-on will turn this:
<p>Something <strong>with</strong> all <em>sorts</em> of <a href="something.html" title="Testing title">tags</a>.</p>
into this:
Something with all sorts of tags.