How do I prevent my email address (and name) from changing in the s2member profile editor?
Prevention of e-mail address change in the s2member profile editor
You could hide it with CSS…
Or remove it with the filter ws_plugin__s2member_during_profile_during_fields_display_email set to FALSE. https://s2member.com/kb-article/hacking-s2member-plugin-w-hooksfilters-for-wordpress/
<?php
add_filter('ws_plugin__s2member_during_profile_during_fields_display_email', '__return_false');
Or if you want it shown, but not editable, then add disabled=“disabled” to its input tag. Maybe could use this action hook to edit it: ws_plugin__s2member_during_profile_during_fields_after_email https://s2member.com/kb-article/hacking-s2member-plugin-w-hooksfilters-for-wordpress/