Quote:
Originally Posted by Nirjonadda
How i can Custom Footer Link open in a new window an is visible to the administrator and registered users ?
|
To open it in a new window find this code:
HTML Code:
<li><a href="'. $vbulletin->options['footerurl'] .'">'. $vbulletin->options['linkname'] .'</a></li>';
And change it to:
HTML Code:
<li><a href="'. $vbulletin->options['footerurl'] .'" target="_blank" >'. $vbulletin->options['linkname'] .'</a></li>';
About the second part of your question, would you like to hide it from guests? Or show it only to admins and the registered group and to no one else?