To allow certain groups to be able to view this find the following code in the 'modifyoptions' template:
PHP Code:
<!-- Start Glossary User Options -->
<if condition="$vboptions['vbglossaryactive']">
Replace it with:
PHP Code:
<!-- Start Glossary User Options -->
<if condition="$vbulletin->userinfo['usergroupid'] == '2'">
<if condition="$vboptions['vbglossaryactive']">
The find the following:
PHP Code:
</if>
<!-- End Glossary User Options -->
<br />
Replace it with:
PHP Code:
</if>
<!-- End Glossary User Options -->
<br />
</if>
Now replace '2' with whatever usergroup number you want to be able to view it.