This question has been answered by BobRay. See the first response.
<?php
$css = '
<style>
/* Country */
#x-form-el-modx-user-country, #x-form-el-modx-user-country div, label[for="modx-user-country"] {
display: none !important;
}
/* Gender */
#x-form-el-modx-user-gender, label[for="modx-user-gender"], #x-form-el-modx-user-gender input, #x-form-el-modx-user-gender div {
display: none !important;
}
/* Birthday */
#modx-user-dob, label[for="modx-user-dob"], #x-form-el-modx-user-dob input, #x-form-el-modx-user-dob div {
display: none !important;
}
</style>
';
$modx->regClientCSS($css);
return '';
You can hide most manager page elements with CSS.
Take a look at this:
https://bobsguides.com/blog.html/2016/08/24/hiding-the-help-button-i/
and this:
https://bobsguides.com/blog.html/2016/09/06/hiding-other-manager-page-elements/
