1. And they can change it? If you want set the colour as default, for example, in helpers/user.php
Search:
$this->img = kideLinks::getAvatarLink();
//add later
$colors = array('000000', '00FF00', 'FF0000', '0000FF');
//1 => special
//2 => administrator
//3 => registered
//4 => guest
if (!$this->color) //if you delete this line they can't change the color
$this->color = $colors[$this->rango];
2. Ok, I will add an option in the admin
3. The ban time in a user banned? Ban him again and the time will be replaced. If you need more days, in:
- com_kide/views/kide/tmpl/default_mostrar.php
- mod_kide/tmpl/default_mostrar.php
<select name="kide_mensaje_banear_dias" style="padding:0">
<option value="0"><?php echo ucfirst(JText::_("COM_KIDE_DAYS")); ?></option>
<?php echo KideHelper::opciones(3); ?>
</select>
Change '3' to your favorite number