Quote:
Originally Posted by ChopSuey
This is vB4 General Discussions  That mod won't work.
|
Actually, the mod does work but you have to copy the contents into a new plugin.
Create a new plugin:
Hook Location: Parse Templates
Update x with the style id you want to hide and copy the contents into the box. Hit save and your good to go.
PHP Code:
$mo37_hidden_styleid = x;
$mo37start = strpos($quickchooserbits, '<option value="'.$mo37_hidden_styleid.'"');
if ($mo37start !== FALSE) {
$quickchooserbits = substr($quickchooserbits , 0, $mo37start).substr($quickchooserbits , strpos($quickchooserbits, '</option>', $mo37start) + strlen('</option>'));
}