SMFPT - Suporte e Manutenção de Fórum em Português

SMF 1.1.x (Móbulos Manual) => SMF 1.1.x Módulos Manual => Tópico iniciado por: candidosa2 em 13 de Janeiro de 2008, 01:50

Título: Imagens Horas e data
Enviado por: candidosa2 em 13 de Janeiro de 2008, 01:50
(http://i275.photobucket.com/albums/jj306/plilisilva/sshot-3-1.png)

boardindex.template.php

Pesquisar por

Código: [Seleccione]
/* The board's and children's 'last_post's have:
time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
link, href, subject, start (where they should go for the first unread post.),
and member. (which has id, name, link, href, username in it.) */
if (!empty($board['last_post']['id']))
echo '
<img align="absmiddle" src="', $settings['images_url'], '/post/xx.gif" alt="Icon" /><font style="font-size: 9pt">', $txt['smf88'], ' <b>', $board['last_post']['link'], '</b></font><br />
', $txt[525], ' ', $board['last_post']['member']['link'] , '<br />
<div style="float: right">
 ', $txt[30], ' ', $board['last_post']['time'], '<a href="', $board['last_post']['href'], '"><img alt="Son Mesaja Git" align="absmiddle" src="', $settings['images_url'], '/newmark.gif" align="right" hspace="3" border="0" /></a></div>' ;

Trocar colocar este aqui

Código: [Seleccione]
/* The board's and children's 'last_post's have:
time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
link, href, subject, start (where they should go for the first unread post.),
and member. (which has id, name, link, href, username in it.) */
if (!empty($board['last_post']['id']))
echo '
<img align="absmiddle" src="', $settings['images_url'], '/post/xx.gif" alt="Icon" /><font style="font-size: 9pt">', $txt['smf88'], ' <b>', $board['last_post']['link'], '</b></font><br />
', $txt[525], ' <img src="', $settings['images_url'], '/icons/boneco.gif" /> ', $board['last_post']['member']['link'] , '<br />
<div style="float: right">
<img src="', $settings['images_url'], '/icons/hora.gif" /> ', $txt[30], ' ', $board['last_post']['time'], '<a href="', $board['last_post']['href'], '"><img alt="Ultima Mensagem" align="absmiddle" src="', $settings['images_url'], '/newmark.gif" align="right" hspace="3" border="0" /></a></div>' ;

Por fim colocar as imagens no teu tema.....images/icons

MessageIndex.template.php

Pesquisar por
Código: [Seleccione]
<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" style="float: right;" /></a>
<span class="smalltext">
', $topic['last_post']['time'], '<br />
', $txt[525], ' ', $topic['last_post']['member']['link'], '
</span>
</td>';

depois trocar por

Código: [Seleccione]
<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" style="float: right;" /></a>
<span class="smalltext">
<img src="', $settings['images_url'], '/icons/hora.gif" /> ', $topic['last_post']['time'], '<br />
', $txt[525], ' <img src="', $settings['images_url'], '/icons/boneco.gif" /> ', $topic['last_post']['member']['link'], '
</span>
</td>';