News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

custom board icons

Started by everwake, June 13, 2009, 12:57:23 PM

Previous topic - Next topic

everwake

Καλησπέρα!

Θέλω να χρησιμοποιήσω  το mod για τα custom board icons (cbi1.5).
Υπάρχει τρόπος ώστε να αλλάζει το χρώμα στην κάθε κατηγορία που υπάρχει καινούριο post?
Η να προστεθεί και εκεί έξω το εικονίδιο «νέο» διπλά από κάθε θέμα , όπως στα  post της κάθε κατηγορίας?

Smf version : 2.0RC1-1

Ευχαριστώ!

everwake

Κάτι βρήκα εδώ http://www.simplemachines.org/community/index.php?topic=312885.0

αλλά ο κώδικας για την 2.0RC1-1 είναι  διαφορετικός και δεν μπορώ να τον μοντάρω!

Ποιος μπορεί να με  βοηθήσει?

everwake

Το πρόβλημα λύθηκε με τον παρακάτω  κώδικα.


BoardIndex.template.php

find
<h4><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a>';

replace with
<h4><a href="', $board['href'], '" name="b', $board['id'], '"', $board['new'] ? ' style="color: red"' : '', '>', $board['name'], '</a>';


MessageIndex.template.php
(find) [Select]
<h4><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a>';

replace with
<h4><a href="', $board['href'], '" name="b', $board['id'], '"', ($board['new'] || $board['children_new']) ? ' style="color: red"' : '', '>', $board['name'], '</a>';


MessageIndex.php
'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['first_subject'] . '</a>'

replace with
'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0"'. ($row['new_from'] <= $row['id_msg_modified'] ? ' style="color: red;"' : ''). '>' . $row['first_subject'] . '</a>'

Advertisement: