Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
Como modifico esta parte ?
Páginas (2): 1 2   
IsJota   27 Aug, 2012, 10:13 pm
#1
Hola, necesito saber como modifico esta parte de mi foro

[Imagen: 30m4z1e.png]

estoy usando el tema Blue Party y no me gusta como se ve esa parte de los temas y mensajes, lo quisiera dejar asi como el de mybb-es Big Grin

[Imagen: 2rbz09t.png]

Que tengo que editar? o si alguien me podria pasar el codigo, Muchas Gracias (:
HSSWebs   28 Aug, 2012, 4:21 am
#2
Tienes que modificar las plantillas forumbit_depth1_cat y forumbit_depth2_forum.

Pega el código aquí si quieres.
IsJota   28 Aug, 2012, 10:31 am
#3
(28 Aug, 2012, 4:21 am)Steeep escribió: Tienes que modificar las plantillas forumbit_depth1_cat y forumbit_depth2_forum.

Pega el código aquí si quieres.


Aquí esta el codigo de forumbit_depth1_cat:
Código PHP:
<?php 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<
thead>
<
tr>
<
td class="thead" colspan="5">
<
div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<
div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</
td>
</
tr>
</
thead>
<
tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<
tr>
<
td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap; width: 150px;"></td>
<
td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</
tr>
{
$sub_forums}
</
tbody>
</
table>
<
br />

y forumbit_depth2_forum:
Código PHP:
<?php 
<tr>
<
td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<
td class="{$bgcolor}" valign="middle">
<
strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</
td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$threads}</strong> {$unapproved['unapproved_threads']} {$lang->forumbit_threads}<br /><strong>{$posts}</strong> {$unapproved['unapproved_posts']} {$lang->forumbit_posts}</span></td>
<
td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
</
tr>

Quisiera ponerlo de esta manera:

[Imagen: 30m4z1e.png]

que los temas y mensajes esten en una caja aparte asi como último mensaje.
Cluster   28 Aug, 2012, 5:53 pm
#4
Si bajas el theme AceNavy lo encuentras por defecto eso y lo transfieres a tu theme actual Smile

:)
HSSWebs   28 Aug, 2012, 6:58 pm
#5
Prueba de esta manera & avísame di es así, porque creo que confundí algo..

forumbit_depth1_cat:

Código PHP:
<?php 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<
thead>
<
tr>
<
td class="thead" colspan="5">
<
div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<
div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</
td>
</
tr>
</
thead>
<
tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<
tr>
<
td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_posts}</td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_thredas}</td>
<
td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</
tr>
{
$sub_forums}
</
tbody>
</
table>
<
br />

forumbit_depth2_forum:
Código PHP:
<?php 
<tr>
<
td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<
td class="{$bgcolor}" valign="middle">
<
strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</
td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$threads}</strong> {$unapproved['unapproved_threads']} {$lang->forumbit_threads}</td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$posts}</strong> {$unapproved['unapproved_posts']} {$lang->forumbit_posts}</td>
<
td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
</
tr>
IsJota   28 Aug, 2012, 7:41 pm
#6
(28 Aug, 2012, 6:58 pm)Steeep escribió: Prueba de esta manera & avísame di es así, porque creo que confundí algo..

forumbit_depth1_cat:

Código PHP:
<?php 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<
thead>
<
tr>
<
td class="thead" colspan="5">
<
div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<
div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</
td>
</
tr>
</
thead>
<
tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<
tr>
<
td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_posts}</td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_thredas}</td>
<
td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</
tr>
{
$sub_forums}
</
tbody>
</
table>
<
br />

forumbit_depth2_forum:
Código PHP:
<?php 
<tr>
<
td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<
td class="{$bgcolor}" valign="middle">
<
strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</
td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$threads}</strong> {$unapproved['unapproved_threads']} {$lang->forumbit_threads}</td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$posts}</strong> {$unapproved['unapproved_posts']} {$lang->forumbit_posts}</td>
<
td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
</
tr>


Hola, copie el codigo que me pasaste y quedo de esta forma:

[Imagen: x2jhbt.png]

esa es la idea que quiero, si me lo pudieras corregir por favor, quiero que se vean solo los nro donde dice 1 temas, 5 mensajes, y arriba quiero que diga, Temas & Mensajes.
Nose si me explicó bien perdón.
HSSWebs   28 Aug, 2012, 7:44 pm
#7
Primera plantilla:
Código PHP:
<?php 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<
thead>
<
tr>
<
td class="thead" colspan="5">
<
div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<
div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</
td>
</
tr>
</
thead>
<
tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<
tr>
<
td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_posts}</td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_threads}</td>
<
td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</
tr>
{
$sub_forums}
</
tbody>
</
table>
<
br />

Segunda plantilla:

Código PHP:
<?php 
<tr>
<
td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<
td class="{$bgcolor}" valign="middle">
<
strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</
td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$threads}</strong> {$unapproved['unapproved_threads']}</td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$posts}</strong> {$unapproved['unapproved_posts']}</td>
<
td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
</
tr>

Con eso debería servir, muestra como te quedo Smile

Perdón por no poner el nombre de las plantillas XD Pero yo creo que se entiende.
IsJota   28 Aug, 2012, 7:59 pm
#8
(28 Aug, 2012, 7:44 pm)Steeep escribió: Primera plantilla:
Código PHP:
<?php 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<
thead>
<
tr>
<
td class="thead" colspan="5">
<
div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<
div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</
td>
</
tr>
</
thead>
<
tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<
tr>
<
td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_posts}</td>
<
td class="tcat" width="85" align="center" style="white-space: nowrap;">{$lang->forumbit_threads}</td>
<
td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</
tr>
{
$sub_forums}
</
tbody>
</
table>
<
br />

Segunda plantilla:

Código PHP:
<?php 
<tr>
<
td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<
td class="{$bgcolor}" valign="middle">
<
strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</
td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$threads}</strong> {$unapproved['unapproved_threads']}</td>
<
td class="{$bgcolor} smalltext" valign="middle" align="center" style="white-space: nowrap"><strong>{$posts}</strong> {$unapproved['unapproved_posts']}</td>
<
td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
</
tr>

Con eso debería servir, muestra como te quedo Smile

Perdón por no poner el nombre de las plantillas XD Pero yo creo que se entiende.

Me quedo de esta forma:
[Imagen: mltsgi.png]

altere esta imagen para el resultado que quiero:
[Imagen: 34dgd8x.png]

PERDÓN POR LAS MOLESTIAS Blush
HSSWebs   28 Aug, 2012, 8:10 pm
#9
Que raro aún te siga mostrando el texto, seguro que modificaste la segunda plantilla?
IsJota   28 Aug, 2012, 8:13 pm
#10
(28 Aug, 2012, 8:10 pm)Steeep escribió: Que raro aún te siga mostrando el texto, seguro que modificaste la segunda plantilla?


Si, puso tal cual me pasaste el codigo, y esta al reves el titulo de mensaje lo pusiste en temas, y aún no sale solo el nro.
Páginas (2): 1 2   
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.