Home › Forums › Bug Reports › Gravity Forms 1.9.3 and Flexible Content WYSIWYG › Reply To: Gravity Forms 1.9.3 and Flexible Content WYSIWYG
I have two possible solutions and I can’t say if either of the will work.
My guess is that wptexturize
is converting the characters before shortcodes are run.
I do not know what other side effects doing either of these will cause.
possible solution 1: force do_sortcodes to run before the other content hooks
add_filter('acf_the_content', 'do_shortcode', 9);
possible solution 2: move wptexturize to after sortcodes
remove_filter('acf_the_content', 'wptexturize');
add_filter('acf_the_content', 'wptexturize', 12);
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.