Need a bit of help

Filez

New Member
Here is my issue.. I have ripped a choice ass skin but for the life of me cant get the register link to hide on forum load. I get both register and user cp. Below is my code and I have tried the
HTML:
if condition="$show['registerbutton']"><a href="register.php$session[sessionurl_q]" rel="nofollow"> $vbphrase[register]</a> </if>
        <if condition="$show['member']"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></if>

and still didnt work and so on need some code help here please and here is my code.
HTML:
<!-- logo -->
<div id="wrapper">
<!-- open content container -->
<div align="center">
 <div class="page" style="width:96%; text-align:left">
  <div style="padding:0px 5px 0px 5px" align="left">
<a name="top"></a>
<div id="header">
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
 <td align="left" valign="bottom"><a href="index.php"><img src="blackstream/blackstream_base/logo.gif" border="0" alt="DigitalVB.com Premium Styles Demo" /></a></td>
 <td align="right" id="header_right_cell">
  &nbsp;
 </td>
</tr>
</table>
</div>
<!-- /logo -->
<!-- content table -->
<!-- nav buttons bar -->
<div class="tborder" style="padding:0px; border-top-width:0px">
 <table class="navbox" cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
 <tr align="center">

 <td class="navm"><a href="usercp.php">User Cp</a></td>
      
  <td class="navm"><a rel="help" href="faq.php" accesskey="5">FAQ</a></td>
  
   <td class="navm"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community",true); </script></td>
  
  <td class="navm"><a href="calendar.php">Calendar</a></td>
  
   
    
    <td class="navm"><a href="search.php?do=getnew" accesskey="2">New Posts</a></td>
    
    <td class="navm"><a id="navbar_search" href="search.php" accesskey="4" rel="nofollow">Search</a> <script type="text/javascript"> vbmenu_register("navbar_search",true); </script></td>
   
   
    <td class="navm"><a id="usercptools" href="/showthread.php?nojs=1#usercptools" accesskey="3">Quick Links</a> <script type="text/javascript"> vbmenu_register("usercptools",true); </script></td>
   
  
  
  
   <td class="navm"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]</a></td>
  
  </tr>
 </table>
</div>
<!-- / nav buttons bar -->
<br />

$spacer_open
$_phpinclude_output
$ad_location[ad_header_end]


here is the register code.
HTML:
<td class="navm"><a href="register.php" rel="nofollow">Register</a></td>

thanks for any help
 

Hoxxy

New Member
HTML:
<if condition="$show['member']">
 <td class="navm"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
<else />
<if condition="$show['registerbutton']">
 <td class="navm"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
 </if>
</if>

blackstream...I was gonna but then saw the postbit_legacy and thought nah to much work to be bothered to do ;)
 
Top