I see blog posts, but logged out I do not... I am checking into this now.
I found the issue, will be resolved shortly.
__________________ Please login or register to view this content. Registration is FREE - Latest Articles: Please login or register to view this content. Registration is FREE , Please login or register to view this content. Registration is FREE
There, this should be fixed. Was an issue to do with permissions and not allowing to view hidden profile fields.
__________________ Please login or register to view this content. Registration is FREE - Latest Articles: Please login or register to view this content. Registration is FREE , Please login or register to view this content. Registration is FREE
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']);
Inside of the showthread_post_start hook.
__________________ Please login or register to view this content. Registration is FREE - Latest Articles: Please login or register to view this content. Registration is FREE , Please login or register to view this content. Registration is FREE