Hide Display Name editing option

Hi Guys, so that Members are unable to change their Display Name, I need to hide this on the editing form they see via the shortcode - [s2Member-Profile /]

I can’t find an option in setting to turn this off, but if there is please let me know where to find it!

Assuming there isn’t one, can you tell me where the form lives and what it’s called, so I can edit this to hide the field completely from User view, or suggest CSS to hide it

Thanks!

Pete

Add this to your site as an mu-plugin:

<?php
add_filter( 'ws_plugin__s2member_during_profile_during_fields_display_first_name', '__return_false' );
add_filter( 'ws_plugin__s2member_during_profile_during_fields_display_last_name', '__return_false' );
add_filter( 'ws_plugin__s2member_during_profile_during_fields_display_display_name', '__return_false' );