I talking about a new setting group I created on vBulletin with Developer Tools (debug mode). When I download all setting groups in the same enabled debug options, I can't see the new setting group I created before. Either way, I tried to edit the file to add manually these new setting group, but I don't know how to set titles or descriptions. Here is what I have:
HTML Code:
<settinggroup name="rpcconf" title="RPC Configuration" displayorder="10" product="vbulletin">
<setting varname="rpchost" displayorder="10">
<title>RPC Host</title>
<description>RPC Host where requests are directed.</description>
<datatype>free</datatype>
<optioncode>textarea</optioncode>
<defaultvalue>http://server.com/</defaultvalue>
<validationcode>return(filter_var($data, FILTER_VALIDATE_URL) != false);</validationcode>
</setting>
</settinggroup>
This example does not work. Any clues?
Thanks kh99! Yet again