Support

Account

Home Forums Feature Requests ACF + Yoast SEO 3.0 Reply To: ACF + Yoast SEO 3.0

  • ACF is struggling with text-area. Some of text-areas i have don’t have full editing capabilities (wysiwig) and are simply text areas. These areas are detected by the plugin, but the content pulled was null:

    In the code there are multiple cases for different type of content, i.e.:

    case 'wysiwyg' :
        value = $el.find('textarea').val();
        break;
     case 'textarea' :
        value = $el.find('textarea').val();
        break;

    When i’ve added case textarea – it fixed the issue.

    case 'textarea' :
        value = $el.find('textarea').val();
        break;

    I’m on WP 4.4
    Yoast SEO 3.0.7
    ACF Pro 5.3.3.1