Just wanted to ask, where in the admin panel, can we edit this setting of viewing hidden profile fields?
I have the same thing in my forum and same problem.
Hope to get some help
It's not an option, actually. You need to create a new plugin. When the fields are hidden and you do not have permission to see them (ie. regular members) then vB adds some SQL to the query that makes them all blank ('' AS field10, '' AS field11 etc etc). To reverse it, I just created a plugin that removes this extra bit of SQL.
For example:
PHP Code:
$vbulletin->profilefield['hidden'] = str_replace(", '' AS field10", '', $vbulletin->profilefield['hidden']);