Hi everybody. I am using this on vb 3.8.5 (yes i know it's old but i cannot update a production environment easily) and i found a vbulletin bug. The bug is, in private messages my custom fields are shown to everybody even if the user is from a usergroup that has no rights to view them (and is not seeing the fields i the threads).
This has nothing to do with the plugin, but since i cannot update my vbulletin right now, i found a workaround patching this plugin:
1) Go to
http://forum.spectrumnet.bg/admincp/....php?do=modify
2) Find Product: ShowProfileFieldInPostBits and select to edit "get fields"
3) in the beginning, replace
Code:
if(THIS_SCRIPT=='showthread' || THIS_SCRIPT=='private'){
with
Code:
if(THIS_SCRIPT=='showthread'){
You will thus disable showing custom fields in private messages and they will show only in threads.