PDA

View Full Version : vb 4.1.3 nav and widget questions


Telshin
04-24-2011, 04:58 PM
After upgrading my vbulletin website to 4.1.3, the unique navbar system I had in place does not work.

I had one navbar and a special drop down navbar on the cms pages and a navbar for all other pages. The call used to be for the cms pages:

<vb:if condition="!(!$vboptions['selectednavtab'] OR THIS_SCRIPT == 'search')">

Now that code piece does not work at all.

I have two custom widgets that I want to plug in over the Better Recent Articles widget, however, I have no idea where to start looking for a place to remove and place custom widgets. Note: They are already on the widgets part in the cms widgets page in the admin panel and configured correctly.

Lynne
04-24-2011, 05:27 PM
I don't see how that condition used to work. If you want it only on the cms pages, then just use:
<vb:if condition="THIS_SCRIPT == 'vbcms'">stuff</vb:if>

Telshin
04-24-2011, 06:13 PM
Lynne, any insight into my widget problem?

Lynne
04-24-2011, 09:17 PM
I didn't understand the widgets question at all.

Telshin
04-24-2011, 09:22 PM
How do you switch out the widgets on the vbcms pages?

After updating, it defaulted by putting the "Better Recent Threads" on the front page. I want to remove that one and put in two different widgets.

Lynne
04-25-2011, 02:37 AM
To change widgets for a layout, go to admincp > vBulletin CMS > Layout > find the layout > click Edit > change the widgets > Save.

Telshin
04-25-2011, 02:19 PM
Thanks, I can not believe I forgot about that.