Disable Smart quotes

Hey there! I am trying to disable the smart quotes on my website and i’ve put in this code in the functions php but it doesn’t seem to be working. Am I doing something wrong?

// Disable Curly Quotes
// =============================================================================

remove_filter('the_content', 'wptexturize');
remove_filter('the_title', 'wptexturize');
remove_filter('the_excerpt', 'wptexturize');

Hi @suzannereid,

Thank you for writing in, I have tested that code on my dev site and it works for me. Please make sure you added the code on the child theme’s functions.php file, and make sure your child theme is active.

If the issue persists, please do testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

Cheers!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.