Hi, yes i used this script in your docs:
add_filter( 'slim_seo_robots_index', function( $value ) {
// Disable for other archive.
if ( is_archive() ) {
return false;
}
return $value;
} );
with “true” istead of false, and seem to work, maybe something overwrote default value ?? Thanks