Public form - Remove Nice Edit from Paragraph text
Hello,
I have a public form on my site with one field "Address" as a paragragh text column type. Is it possible to remove the Nice Edit buttons from this on the public form side only?
Thank you,
Alan
2 Answers
You can just hide it with css:
.nicEdit-panel {display: none; }
Or remove it with jQuery on load
$('. nicEdit-panel').remove();
