wod-options.json appears to be associated with the Webp Express plugin. I’ve just reconfigured the plugin settings and encountered a new error: ‘Sanity check failed for destination path: String expected.’
Hello
I had the same problem with directories created with 744 access rights.
My server use suPHP, and switching umask to 0022 in file suphp.conf was the solution for me.
I’ve to search now, a solution for wordpress sites which are on other hostings.
Hi,
I hope that you’ve already found a solution.
Here is mine. Use another filter “after_setup_theme” to override boilerplate config.
function volta_setup() {
remove_filter( 'get_the_excerpt', 'boilerplate_custom_excerpt_more' );
remove_filter( 'excerpt_more', 'boilerplate_auto_excerpt_more' );
}
add_action('after_setup_theme', 'volta_setup');