estos son llas instrucciones que lei pero no me funcionan
Primero Open /templates/xxxxx/profile_add_body.tpl
Buscar:
Código: Seleccionar todo
<!-- Visual Confirmation -->
Agregar Antes:
Código: Seleccionar todo
<!-- BEGIN robot -->
<tr>
<td class="row1"><span class="gen"><strong>You are a Robot?: *<br />
Tu eres un Robot?: * </strong></span></td>
<td class="row2"><input name="city" type="text" id="city" />
<span class="gen"> (Type <strong>No</strong>, Escriba <strong>No</strong>)</span></td>
</tr>
<!-- END robot -->
Luego Open: /includes/user_cp_register.php
Buscar:
Código: Seleccionar todo
if ($board_config['enable_confirm'] && $mode == 'register')
Agregar Antes:
Código: Seleccionar todo
if ($mode == 'register')
{
if ($_POST['city'] != 'No')
{
$error = TRUE;
$error_msg .= ( ( $error_msg != '' ) ? '<br />' : '' ) . 'Please Type if you Are a robot or <b>No</b>t';
}
}

plz no entiendo