valendesigns / option-tree

Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
GNU General Public License v2.0
597 stars 179 forks source link

How to allow unfiltered html and js in textarea-simple field? #742

Open sikandarasr opened 2 years ago

sikandarasr commented 2 years ago

Hello,

OT version 2.7.3 is stripping out <form> and <input> tags from HTML code in a textarea-simple field.

How can I allow these tags?

I tried using following but that did not work.

add_filter( 'ot_allow_unfiltered_html', '__return_true' );

Thanks in advance.

Bakar