Quote:
Originally Posted by volarium
So, I did this, and the field is now blank, but there is still a (blank) button in the navbar, which is a bad user experience. Is there a way to completely remove the button?
Thanks!!
|
Did you miss these posts?
Quote:
Originally Posted by Animemike
This way will only Show a empty button if you go hover over the space you will see its still there 
|
Quote:
Originally Posted by Animemike
To add the Link on the Navbar
Plugins & Products >> Plugin Manager
Find Mini-Photoshop and edit it
Replace the "Plugin PHP Code" With this
Code:
if ($vbulletin->options['ctab_enable'] && $vbulletin->options['new_window'])
{
$template_hook['navbar_after_calendar'] .= '
<li><a href="mini-photoshop.php" target="_blank" class="navtab">'. $vbulletin->options['ctab_name'] .'</a></li>';
}else{
$template_hook['navbar_after_calendar'] .= '
<li><a href="mini-photoshop.php" class="navtab">'. $vbulletin->options['ctab_name'] .'</a></li>';
}
And save
To not show it at all i GUESS you could just add Leave is Blank
|