Tricks

Remove image captions from Rich Editor (Trix) when displaying it front end

Nov 25, 2022
aurawindsurfing
Form builder, Integration

Trix Rich editor is very handy to drop/upload images but user soon realises that they show with image__caption on the front end.

Easy way to remove captions is to add this to your app.css file:

<style>
figcaption {
display: none;
}
</style>

No comments yet…