Hi there,
that is showing a body class for the BBpress Members directory.
If that the case then it has this conditional template tag:
bbp_is_members_directory()
So you could try using that with the generate_element_display filter:
https://docs.generatepress.com/article/generate_element_display/
eg,
add_filter( 'generate_element_display', function( $display, $element_id ) {
if ( 100 === $element_id && bbp_is_members_directory() ) {
$display = true;
}
return $display;
}, 10, 2 );
Change the 100 to match the ID of the layout element you want to apply to it.