wersja skryptu MyBB: 1.6
adres forum: trwają prace
na czym polega problem (screen, opis, komunikaty):
Dałoby radę usunąć te rubryki zaznaczone na czerwono na screenie? (liczba wątków, postów i ta czarna belka, chyba .tcat się to nazywa?)
http://img31.otofotki.pl/obrazki/dc193_.PNG
Pokaż forumbit_depth2_forum i forumbit_depth1_cat (ACP -> Style i Szablony -> Szablony -> Twój_Szablon -> Opis działu).
@
GibonekPL - jak Ty to chciałbyś zrobić w szablonach?
@
bayon -
Zaloguj się do FTP, przejdź do inc/
functions_forumlist.php, odszukaj takiego fragmentu:
Kod PHP:
if($forum['linkto'] != '' || $hideinfo == true || $hidecounters == true)
{
$posts = "-";
$threads = "-";
}
// Otherwise, format thread and post counts
else
{
$posts = my_number_format($forum['posts']);
$threads = my_number_format($forum['threads']);
}
Zamień go na:
Kod PHP:
if($forum['linkto'] != '' || $hideinfo == true || $hidecounters == true)
{
$posts = "-";
$threads = "-";
if($forum['fid'] == 'WPISZ') {
$threads = "-";
$posts = "-";
}
}
// Otherwise, format thread and post counts
else
{
$posts = my_number_format($forum['posts']);
$threads = my_number_format($forum['threads']);
if($forum['fid'] == 'WPISZ') {
$threads = "-";
$posts = "-";
}
}
W moim kodzie masz dwa razy
WPISZ, zamiast tego daj
FID działu w jakim ma się to wyświetlać, jak sprawdzić jaki fid ma ten dział?
- Wejdź w niego i zobacz na link. Na końcu niego będziesz miał cyfrę, to jest właśnie ten FID poszukiwany. Teraz go zamień zamiast
WPISZ w kodzie.
W tym dziale zamiast liczby wątków i postów będzie Ci się wyświetlał znak
-. Jasne, że możesz go zamienić sobie na jaki chcesz, lub zostawić puste,, by nic nie wyświetlało.
Fragment odpowiadający za to:
Kod PHP:
if($forum['fid'] == '9') {
$threads = "-";
$posts = "-";
}
te
- możesz zmienić/usunąć.
@Snake_, może tak że usunę to z szablonów i po sprawie?..
, ale chłop chce usunąć ze wszystkich działów, a nie z jednego..
Snake_ - wywaliłem tamten kod i wstawiłem ten co kazałeś. Wpisałem najpierw FID pierwszego działu (2) a potem ten drugi FID drugiego działu. Zapisuję. Wchodzę na stronę i przy pierwszym dziale z tym FIDem 2 nadal wyświetla się liczba wątków i postów. :/ Przy drugim dziale z tym FIDem 5 wyświetla się to co tam wpisałem, a dokładniej pozostawiłem to puste.
Może wyraziłem się niezbyt jasno. Bo chodzi mi też o to by po wywaleniu tej opcji wyświetlania liczby wątków i postów nie pozostały te rubryki (na zrzucie pogrubione na czarno):
http://img31.otofotki.pl/obrazki/iy658_3.PNG
GibonekPL, proszę: (forumbit_depth2_forum)
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="top" 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="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
forumbit_depth1_cat
Kod:
<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 style="padding:0" colspan="2"/>
<td style="padding:0" width="85"/>
<td style="padding:0" width="85"/>
<td style="padding:0" width="200"/>
</tr>
{$sub_forums}
</tbody>
</table>
<br />
forumbit_depth2_forum
Kod PHP:
<tr>
<td class="{$bgcolor}" align="center" valign="top" 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="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
forumbit_depth1_cat
Kod 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 style="padding:0" colspan="2"/>
<td style="padding:0" width="200"/>
</tr>
{$sub_forums}
</tbody>
</table>
<br />
Jeśli będziesz potrzebował zmienić szerokość, to: width="200"