Con esto que te voy a colocar, no añades uno sólo, sino 5 campos más al menos.
Esto es compatible con la 3.6.7
Version: 1.00, by Adam21 (Designer) de
vBulletin.org
1º.- AdmiCP/Administrador de Estilo/Tu estilo/ y añades este css en la caja final y guardas.
PHP:
.postdata {
border-top: solid 1px #E0E0E0;
border-left: solid 1px #E0E0E0;
border-right: solid 1px #D7D7D7;
border-bottom: solid 1px #D7D7D7;
margin: 3px 5px;
padding: 2px;
color: #808080;
background: #FFFFFF;
font-size: 10px;
}
Cuando acabes podrás cambiar el color, tamaño, fondo de los campos en este css y adecuarlo a tu estilo.
2º.- En AdmiCP/Estilos y Plantillas/Buscar dentro de Estilo/
Postbit_Legacy
Busca en esta plantilla esto:
PHP:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
y sustituye por este:
PHP:
<if condition="$post['joindate']"><div class="postdata">$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div class="postdata">$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"> <div class="postdata">$vbphrase[age]: $post[age]</div></if>
<div class="postdata">
$vbphrase[posts]: $post[posts]
</div>
<if condition="$show['infraction']"><div class="postdata">$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
____________________________
Para crear un solo campo:
Buscas en la misma plantilla esto:
PHP:
<div>
$vbphrase[posts]: $post[posts]
</div>
justo debajo colocas esto:
PHP:
<div>
nombre del campo: $post[fieldX]
</div>
FieldX: nº del campo que has creado
NOTA:
ANTES DE TOCAR NADA DE LA PLANTILLA DE VBULLETIN, ASEGÚRATE UNA COPIA, O EN TODO CASO; COPIA EL ORIGINAL DE ESTA PLANTILLA Y LA GUARDAS POR SI NO TE GUSTA COMO QUEDA PARA VOLVER A COLOCAR LA MISMA.
Si no estas seguro de lo que haces, no modifiques nada.
salu2