Jeffrey

Devbest Indian Tech Support
FindRetros Moderator
Feb 5, 2013
1,180
412
Hello there, You could of googled search, but here it is\

PHP:
 if(($this->getInfo($_SESSION['user']['id'], 'rank')) >= [whatever number you got])
                                                        {
with this
PHP:
if(($this->getInfo($_SESSION['user']['id'], 'rank')) >= [put a number for staff])
                                                        {
It essentially changes the value of people going into the housekeeping.

PHP:
 if($this->params['rank'] > 6)
            {
                $this->setParams('housekeeping', '<li class="tab-register-now"><a href="ase/">Housekeeping</a></li>');
            }
with this
PHP:
if($this->params['rank'] ><!-- Change Value -->)
            {
                $this->setParams('housekeeping', '<li class="tab-register-now"><a href="ase/">Housekeeping</a></li>');
            }
 
Last edited:

Wickd

The first member of the Knights of the Pink Table
Jan 15, 2013
1,936
612
Just add {housekeeping} between the last page/tab link and the </ul>
Example :
<li class="viptab"><a href="/vip">VIP-Shop</a><span></span></li>
{housekeeping}
</ul>
 
Last edited:

Users who are viewing this thread

Top