VB3.8 style menu question

Xcantion

New Member
Hello everybody! I have a little Problem:

I have create a new style for vb3.8 everything works but one menu item doesnt work...

explain:
I have create a new menü with a lot of items

PHP:
<tr align="center">
<td class="navleft"></td>
		<if condition="$show['member']">
			<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
		</if>
		<if condition="$show['registerbutton']">
			<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
		</if>
		$template_hook[navbar_buttons_left]

and much more...

but this item in the new menü doesnt work:
PHP:
<if condition="$show['communitylink'] AND $show['popups']">
			<td class="vbmenu_control"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
		<else />
			<if condition="$vboptions['enablememberlist']">
				<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
			</if>
			<if condition="$show['quick_links_groups']">
				<td class="vbmenu_control"><a href="group.php?$session[sessionurl]">$vbphrase[social_groups]</a></td>
			</if>
		</if>

if i use the code in the original template everything works... but in the new template this code snipped doesnt work... why?
Did i have forgoten something?
or have i made a mistake?
 
Back
Top