@jonburr Currently, Custom Post Types are not supported.
Don’t worry, I’ll be working on it today and it will be supported in next update. I’ll keep you posted.
You can expect an update in next 24-48 hours.
I managed to achieve the previous version’s behavior with the following combination of filters.
function ikva_remove_robots_meta() {
return null;
}
add_filter('wpseo_robots', 'ikva_remove_robots_meta');
add_filter('wpseo_googlebot', 'ikva_remove_robots_meta');
add_filter('wpseo_bingbot', 'ikva_remove_robots_meta');
add_filter( 'wpseo_canonical', '__return_false' );
remove_filter('wp_robots', 'wp_robots_max_image_preview_large');