Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Danny van Kooten

    (@dvankooten)

    Hi Twanneman,

    This is because the plugin hooks later than when your functions.php file is processed. You can fix it by removing the filters in a hook that runs later in the request lifecycle.

    Try the following snippet.

    function myprefix_init() {
    	remove_filter( 'ww_content', 'wpautop' );
    }
    add_action( 'init', 'myprefix_init' );

    Will look into this so it works out of the box in the next update of the plugin. ??

    Hope that helps!

    Thread Starter Twanneman

    (@twanneman)

    That works like a charm, thank you for the quick reply!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable autop filter ?’ is closed to new replies.