@nospy you can override the default _user.disp.php file in your main collection skin. Just copy the file skins_fallback_v6/_user.disp.php into your skin's folder. Open the just copied file and find a line that looks like this: foreach( $User->userfields as $userfield ) around line 355.
That will hide ALL sections (but "Reputation") to the visitors and only users allowed to edit the whole site will be able to see them. If this is the idea, then the permission level and sections to hide can be adjusted, just let us know.
@nospy you can override the default
_user.disp.php
file in your main collection skin. Just copy the fileskins_fallback_v6/_user.disp.php
into your skin's folder. Open the just copied file and find a line that looks like this:foreach( $User->userfields as $userfield )
around line 355.If you replace that block this way:
Replace:
with:
That will hide ALL sections (but "Reputation") to the visitors and only users allowed to edit the whole site will be able to see them. If this is the idea, then the permission level and sections to hide can be adjusted, just let us know.