Support

Account

Home › Forums › General Issues › Extra tags when placing a Gravity Form in a WYSIWYG › Reply To: Extra tags when placing a Gravity Form in a WYSIWYG

  • What happens if you get the unformatted value from the ACF WYSIWYG and then apply the_content filters to it?

    Example:

    
    $value = get_field('wysiwyg');
    $value = apply_filters('the_content', $value);
    echo $value;