Hi:
I'm using the filter below in my functions.php file to allow tags in my fields. It works fine if a user is logged in. But it reverts to disallowing certain tags and tag attributes again when a user is not logged in. I need it to always allow all tags and attributes, regardless of the user's logged-in status.
How do I do this?
add_filter("gform_allowable_tags_12", "allow_basic_tags");
function allow_basic_tags($allowable_tags){
return true;
}