Respuesta: Ordenar datos de usuarios
Por lo general el código es así:
Insertar CODE, HTML o PHP:
<td width="100%"> </td>
<td valign="top" nowrap="nowrap">
<div class="smallfont">
<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>
$template_hook[postbit_userinfo_right_after_posts]
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><div><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
$template_hook[postbit_userinfo_right]
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
</div>
</td>
</tr>
Si notas arriba, hay pedazos de código explicito, o sea te indican que son, como este:
Insertar CODE, HTML o PHP:
<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
Practicamente lo que tienes que hacer es agregar un poco de estilo a las etiquetas HTML llamadas
div y como estas encierran el contenido, puedes agregar tablas.
Si realmente no entiendes mucho de HTML, puedes usar un editor de HTML como Frontpage, Dreamweaver, entre muchos otros y agregar allí de forma visual las tablas, pero ten cuidado que estos programas tienden a eliminar cierto código necesario del vBulletin, revisa que las variables no falten antes de enviar y guardar el código.
See Ya