
08-05-2010, 09:29 AM
|
|
|
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Nikola Bosnjak
If this is not possible, how can I change sub links that I see when I'm using a form? Currently I'm not using a Forum on my site, only a CMS, so when a visitor goes to fill a form, now he see a links that he don't understand (FAQ, Calendar, Forum actions, Quick links) so I would like that I can hide this links or to have the same links like when I'm reading articles (Sections).
Please, and thank you!
|
Find this line in plugin Easy Forms - Forms Tab:
PHP Code:
$vbulletin->options['selectednavtab'] = 'forms';
Replace with:
PHP Code:
$vbulletin->options['selectednavtab'] = 'vbcms';
or
PHP Code:
$vbulletin->options['selectednavtab'] = 'articles';
|