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
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.