• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

hidden range

Newbie Spellweaver
Joined
Aug 14, 2016
Messages
40
Reaction score
2
hi



as giving hidden range ?from phpmyadmin > ranks
 
Newbie Spellweaver
Joined
Jun 20, 2014
Messages
72
Reaction score
1
If you mean rank instead of range, If you using 'ranks' table for show staffs, if max rank 9, please try give 10 rank. Another way, you can add to CMS a condition in while.
Example,
PHP:
$hiddenStaffs = array(
'example'
);

// ...

// Loop....
// In loop code block
if(in_array($row['username'], $hiddenStaffs)){
      continue; // Skip this staff
}
// write staff codes (HTML)
// Loop end....
 
Upvote 0
Back
Top