Support

Account

Home Forums ACF PRO Turn off smart / curly quotes? Reply To: Turn off smart / curly quotes?

  • Hi @waffl

    Could you please try the following code in your functions.php file?

    function my_acf_remove_curly_quotes() {
        remove_filter ('acf_the_content', 'wptexturize');
    }
    add_action('acf/init', 'my_acf_remove_curly_quotes');

    Hope this helps 🙂