Thank you for your thread which helped me to find a solution.
I was lokking to noindex profiles pages in buddypress.
At least it works on my side. Hope that will help you guys.
// Set a high priority to remove Yoast meta robots tags before they are added
function remove_yoast_meta_robots() {
if (function_exists('buddypress') && bp_is_user()) {
// Remove Yoast's meta robots tag
add_filter('wpseo_robots', function($robots) {
return 'noindex, follow';
});
}
}
add_action('wp', 'remove_yoast_meta_robots', 1);