Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Topic started by: Bulakbol on December 18, 2007, 06:34:51 PM

Title: ColorizeBoards
Post by: Bulakbol on December 18, 2007, 06:34:51 PM
Link to Mod (http://custom.simplemachines.org/mods/index.php?mod=1030)

Optional colors for the parent board and child board's name and description. 
Title: Re: ColorizeBoards
Post by: falguni1 on December 18, 2007, 07:27:39 PM
good mod
Title: Re: ColorizeBoards
Post by: Bulakbol on December 18, 2007, 10:39:58 PM
Thanks falguni1.
Title: Re: ColorizeBoards
Post by: binal0072003 on December 18, 2007, 11:15:22 PM
how to change the colors
Title: Re: ColorizeBoards
Post by: Bulakbol on December 18, 2007, 11:27:56 PM
Edit/modify your board and you will see the color input box under the board's name and one under the description. Check the attached pic.
Title: Re: ColorizeBoards
Post by: qtime on December 19, 2007, 03:57:01 AM
thanks nice found, now I did that job with some code settings. this will make life much easier... :).
Title: Re: ColorizeBoards
Post by: karlbenson on December 19, 2007, 04:01:16 AM
Very nice indeed.

But maybe it would be good for a future version to make it choose css classes.
That way you can do a different color for each theme.
Title: Re: ColorizeBoards
Post by: Indy74 on December 19, 2007, 07:50:59 AM
Great Mod indeed!

I have a question: when i set diferent colors it show changes correctly in a manage board settings window but nothing is changed when on forum index. I guess something is overiding those settings but cant manage what. Any idea?

Thanks!
Title: Re: ColorizeBoards
Post by: Fallen Angel on December 19, 2007, 08:39:56 AM
Think the problem is in Themes.. Like Dilber MC i cant change colors with this mod..

As you see, it changes in Admin panel BUT not on the board..


But a great idea/mod btw.....
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 08:46:21 AM
@karlbenson
   Thanks. You are right. The css will work on all theme but for me, css is not user friendly.

@qtime
    Sorry, I didn't get what you mean by code settings.

@Indy74
   The mod will only work with the default theme. You are probably using different theme. If so, you have to do the manual modification to BoardIndex.template.php and MessageIndex.template.php. 


Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 08:48:44 AM
Quote from: Fallen Angel on December 19, 2007, 08:39:56 AM
Think the problem is in Themes.. Like Dilber MC i cant change colors with this mod..


But a great idea/mod btw.....

Try doing the modification manually on  BoardIndex.template.php and MessageIndex.template.php.  It should work.
Title: Re: ColorizeBoards
Post by: Fallen Angel on December 19, 2007, 08:59:14 AM
Quote from: JohnyB on December 19, 2007, 08:48:44 AM
Quote from: Fallen Angel on December 19, 2007, 08:39:56 AM
Think the problem is in Themes.. Like Dilber MC i cant change colors with this mod..


But a great idea/mod btw.....

Try doing the modification manually on  BoardIndex.template.php and MessageIndex.template.php.  It should work.

Can u show me the codes for those two files? Then I'll try it right now.....
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 09:09:44 AM
It's in the package. Read the install.xml under BoardIndex.template.php and MessageIndex.template.php. Anyway, here's the code.

BoardIndex.template.php, look for similar codes.


echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];


and replace with


// Colorize board mod start
echo '</a>
</td>
<td class="windowbg2">
<strong><a href="', $board['href'], '" name="b', $board['id'], '">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';">', $board['name'], '</span>';
else
echo $board['name'];
echo '</a></strong>';
if (!empty($board['description']))
{
echo '<br />';
if (!empty($board['dcolor']))
echo '<span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';
else
echo $board['description'];
}
// Colorize board mod ends


and in MessageIndex.template.php, look for


echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];


and replace with


// Colorize board mod start
echo '</a>
</td>
<td class="windowbg2">
<strong><a href="', $board['href'], '" name="b', $board['id'], '">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';">', $board['name'], '</span>';
else
echo $board['name'];
echo '</a></strong>';
if (!empty($board['description']))
{
echo '<br />';
if (!empty($board['dcolor']))
echo '<span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';
else
echo $board['description'];
}
// Colorize board mod ends


. Hope that helps.
Title: Re: ColorizeBoards
Post by: Fallen Angel on December 19, 2007, 09:19:29 AM
That worked! Thanx a million!
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 09:25:12 AM
You're welcome. 'Glad you made it work.
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on December 19, 2007, 06:37:48 PM
Wow. This is an ingenious mod, thanks JohnyB! Works like a charm, and a great way to organize the forums for the different groups I have on my board. Thanks!

EDIT: Just a suggestion, would it be possible to apply the forum title colorization to the section that says "Child Boards: Forum One, Forum Two"? I noticed that wasn't getting affected by the mod. 
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 06:50:15 PM
Thanks Eliana. If you want to colorize the number of posts and number of topics, edit BoardIndex.template.php and MessageIndex.template.php. They are the same.

find

Quote
// Show some basic information about the number of posts, etc.
               echo '
            </td>
            <td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
               ', $board['posts'], ' ', $txt[21], ' <br />
               ', $board['topics'],' ', $txt[330], '
            </span></td>
            <td class="windowbg2" valign="middle" width="22%">
               <span class="smalltext">';

and replace with

Quote
// Show some basic information about the number of posts, etc.
            // Colorize board start
               echo '
            </td>
            <td class="windowbg" valign="middle" align="center" style="width: 12ex;">';
            if (!empty($board['bcolor']))
               echo '<span style="color: ', $board['bcolor'], ';" class="smalltext">';
            else
               echo '<span class="smalltext">';
            echo '
               ', $board['posts'], ' ', $txt[21], ' <br />
               ', $board['topics'],' ', $txt[330], '
            </span></td>
            <td class="windowbg2" valign="middle" width="22%">
               <span class="smalltext">';
            // Colorize board ends

It will looks like this (except for the colorized category and child boards).
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 08:09:35 PM
Quote from: Eliana Tamerin on December 19, 2007, 06:37:48 PM

EDIT: Just a suggestion, would it be possible to apply the forum title colorization to the section that says "Child Boards: Forum One, Forum Two"? I noticed that wasn't getting affected by the mod. 

Thanks for the suggestion. I appreciated it. It will be in version 2.0 tho. Everything will be colorized. :)


Title: Re: ColorizeBoards
Post by: Eliana Tamerin on December 19, 2007, 08:36:48 PM
Sounds great, JohnyB. I look forward to 2.0.
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 08:52:39 PM
Sure. I will release it sometimes next week.  Thanks.
Title: Re: ColorizeBoards
Post by: HuRRR on December 19, 2007, 10:29:53 PM
Someone have any idea of why it doesn't work for my childboard ?
Title: Re: ColorizeBoards
Post by: Bulakbol on December 19, 2007, 10:52:56 PM
What theme are you using?  Can you elaborate a little?

The picture doesn't looks like a theme to me. This mod installs only in the default core theme. You have to install it manually if you are using other themes. 
Title: Re: ColorizeBoards
Post by: HuRRR on December 20, 2007, 10:12:50 AM
I'm using Tux red planet, but with modificated BoardIndex.template.php.

I have join BoardIndex.template.php to this message, if someone can help me :)

Thanks by advance !
Title: Re: ColorizeBoards
Post by: Bulakbol on December 20, 2007, 03:44:38 PM
I'll take a look at your BoarIndex.template.php and see what I can do to help.

<edit>
  Hurrr, those are the list of childboards in the board index.
  Colors are not supported by version 1.0. 
  It will be supported by version 2.0 that will be released sometimes next week.
</edit>
Title: Re: ColorizeBoards
Post by: kamili34 on December 22, 2007, 03:43:58 PM
Thanks I'll check it.
Title: Re: ColorizeBoards
Post by: nguyen on December 22, 2007, 07:03:17 PM
Hi,
Any one help if you know the child board is not working with color change. It is color at ACP only but not index or boad.

Thanks,
Nguyen,
Title: Re: ColorizeBoards
Post by: Bulakbol on December 22, 2007, 07:23:18 PM
Hi Nguyen. Version 2.0 is coming out sometimes next week after Christmas and it support the colored display of childboards in board index.
Title: Re: ColorizeBoards
Post by: nguyen on December 22, 2007, 08:57:41 PM
Thanks a lot, it is clear and I was stop to fix it.
Title: Re: ColorizeBoards
Post by: Bulakbol on December 22, 2007, 11:33:07 PM
That's good. Come back after Christmas and download version 2.0. 
Title: Re: ColorizeBoards
Post by: Badboy on December 24, 2007, 07:23:55 AM
Great mod. Thx.

Just a suggestion, maybe font size and style (bold, underline, italic) can be customized like the colors. After that the mod name will be CustomizeBoards :)
Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 02:12:57 AM
Thanks for the compliment. CustomizeBoards will be another mod LOL.  Thanks for the suggestion.


ColorizeBoards is now upgraded to version 2.0.

M E R R Y    C H R I S T M A S     E V E R Y O N E !
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 03:28:10 AM
Nice mod
work fine in my theme ayisigi
Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 03:57:02 AM
Thanks. Try version 2.0.  it has an option for category too. Colors everywhere like Christmas tree. LOL.
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 04:52:08 AM
Thank
IAM INSTALL
but  i see that error
Can Help me
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi211.photobucket.com%2Falbums%2Fbb184%2Fcandidosa2%2Fsshot-5-16.png&hash=f0f012ba090aaf2a72da0640c90979d6bb8df518)

i puty that code in boardindex.template.php

// Colorize board mod start
echo '
<strong><a href="', $board['href'], '" name="b', $board['id'], '">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';">', $board['name'], '</span>';
else
echo $board['name'];
echo '</a></strong>';
if (!empty($board['description']))
{
echo '<br />';
if (!empty($board['dcolor']))
echo '<span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';
else
echo $board['description'];
}
// Colorize board mod ends
Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 05:13:23 AM
You are using custom theme so you have to manually install it. BoardIndex.template.php and MessageIndex.template.php.

What custom theme are you using?
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 05:36:40 AM
Yes iam install manual ....
BoardIndex.template.php and MessageIndex.template.php.

My Themes for ayisigi teknodyum

Puty that code

// Colorize board mod start
echo '</a>
</td>
<td class="windowbg2">
<strong><a href="', $board['href'], '" name="b', $board['id'], '">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';">', $board['name'], '</span>';
else
echo $board['name'];
echo '</a></strong>';
if (!empty($board['description']))
{
echo '<br />';
if (!empty($board['dcolor']))
echo '<span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';
else
echo $board['description'];


i see that erro
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi211.photobucket.com%2Falbums%2Fbb184%2Fcandidosa2%2Fsshot-3-28.png&hash=cba9ecbadf482f354176acd632cf8d6f4feef466)

i remove that line
</a>
</td>
<td class="windowbg2">


Now iam install 2.0 see that erro i send .....duplicate nome..



Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 05:44:45 AM
I'll check that custom theme if available and check it myself. 

Note: The mod will only install on the default core theme.


<edit> Sorry Joomlamz, I can't find your custom theme. </edit>

Attach your BoardIndex.template.php and MessageIndex.template.php and I'll look at them.
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 06:06:36 AM
Sorry i puty all attach
http://www.simplemachines.org/community/index.php?topic=160709.0
Themes is remove....
Thank you
Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 06:11:50 AM
Thanks. I'll get back to you. Meanwhile, check your default theme if it's working.

<edit> Joomlamz, you're using version 1.1.2. The mod is tested only with version 1.1.4. I don't think it will work with 1.1.2. Sorry. You better upgrade to 1.1.4 for security. </edit>
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 06:24:37 AM
Yes she work Fine
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi211.photobucket.com%2Falbums%2Fbb184%2Fcandidosa2%2Fsshot-6-15.png&hash=594f26cebcfb33e3b76273bf065c79b72e1c3210)
Iam still wait...
Title: Re: ColorizeBoards
Post by: Bulakbol on December 25, 2007, 06:30:12 AM
awww let me look at your BoardIndex.template.php and MessageIndex.php again. It looks like you need a custom made ColorizeBoards mod.  I'll let you know.

<edit again> Joomlamz, sorry, your theme is multicolor and it's using it's own color. The category color is the only one that work in the ay isigi theme. Sorry, can't do anything. </edit again> lol
Title: Re: ColorizeBoards
Post by: Apllicmz on December 25, 2007, 07:18:28 AM
Yes i try...
see my forum..www.joomlamz.com  and forum
Board is now have color....

Where can edit...
Title: Re: ColorizeBoards
Post by: Bulakbol on December 26, 2007, 02:38:11 AM
I saw the category color is working. Looking good site eh.
Title: Re: ColorizeBoards
Post by: Apllicmz on December 26, 2007, 08:09:08 AM
Thank you
Did Have soluction for mi...
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on December 26, 2007, 12:48:26 PM
QuoteIt looks like you need a custom made ColorizeBoards mod.

QuoteJoomlamz, sorry, your theme is multicolor and it's using it's own color. The category color is the only one that work in the ay isigi theme. Sorry, can't do anything.

Doesn't look like there is one.
Title: Re: ColorizeBoards
Post by: Bulakbol on December 26, 2007, 05:30:09 PM
Quote from: Eliana Tamerin on December 26, 2007, 12:48:26 PM
QuoteIt looks like you need a custom made ColorizeBoards mod.

QuoteJoomlamz, sorry, your theme is multicolor and it's using it's own color. The category color is the only one that work in the ay isigi theme. Sorry, can't do anything.

Doesn't look like there is one.

Joomlamz theme I think uses css and java script to change board colors.   
Title: Re: ColorizeBoards
Post by: allumius on December 27, 2007, 05:40:26 AM
i have one problem
I use the scribles2 theme

in the BoardIndex.template.php i'm finding for this code

// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
', $board['posts'], ' ', $txt[21], ' <br />
', $board['topics'],' ', $txt[330], '
</span></td>
<td class="windowbg2" valign="middle" width="22%">
<span class="smalltext">';


Buy i dont have this code!
Here is my BoardIndex.template.php. Can you help me please?
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on December 27, 2007, 08:12:35 AM
Wow, that's even weird for Bloc. I checked out your BoardIndex.template.php and I had to double check against one from a Scribbles 2 theme that I downloaded.

I think I see what you have to do, but I'm not entirely sure. Make sure JohnyB either agrees with me or posts the correct way before you do this.

// Show some basic information about the number of posts, etc.
echo '
</td>';
if(!empty($settings['use_redirect']))
{
if(!$board['is_redirect'] || !$modSettings['redirect_hide_columns'])
{
if(!$board['is_redirect'])
{
echo '
<td class="windowbg" align="center">', $board['posts'], '</td>
<td class="windowbg" align="center">', $board['topics'],'</td>';
}
else
echo '
<td colspan="2" class="windowbg" align="center">Redirected</td>';
}
}
else
echo '
<td class="windowbg" align="center">', $board['posts'], '</td>
<td class="windowbg" align="center">', $board['topics'],'</td>';


echo '
<td class="windowbg2 smalltext" valign="middle" width="26%">';


This is the section in question.

Find this:

else
echo '
<td class="windowbg" align="center">', $board['posts'], '</td>
<td class="windowbg" align="center">', $board['topics'],'</td>';


And replace it with this:

else
echo '
<td class="windowbg" align="center">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';" class="smalltext">';
else
echo '<span class="smalltext">';
echo '
', $board['posts'], '</span></td>
<td class="windowbg" align="center">';
if (!empty($board['bcolor']))
echo '<span style="color: ', $board['bcolor'], ';" class="smalltext">';
else
echo '<span class="smalltext">';
echo '
', $board['topics'],'</span></td>';


Please note: I haven't tested this. Either wait for JohnyB or use at your own risk. If it fails, just go back and replace the entire section with the one I posted above.
Title: Re: ColorizeBoards
Post by: Bulakbol on December 27, 2007, 04:12:19 PM
I'll take a look at your BoardIndex.template.php Allumius. I'll let you know.

Have you tried Eliana's sulution?


<edit>

Eliana Tamerin is correct. Just change the class="smalltext" part to class="normaltext". Do the same thing with your MessageIndex.template.php. If you have problem, just let me know.

Also, if you installed version 2.0 (not supported by verion 1.0), find this code

Quote$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';

and replace with

Quote$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')"><span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';

That will display colors of childboards in board index.


I noticed that the list of childboard in board index has a white part at the right side. It could only be my copy but in case you also have it, just find:

Quote<td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

and change the colspan="3" to colspan="5". Like this.

Quote<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

</edit>
Title: Re: ColorizeBoards
Post by: allumius on December 27, 2007, 05:47:04 PM
First, Sorry, my english is very  :(

Thank you very much to you two
I have tried Eliana's solution and it seems to be that it me works well!!!
Tomorrow I want to try your solution for childboards'colors JohnyB
Thanks  :D

Google does small miracles translating  :)
Title: Re: ColorizeBoards
Post by: Bulakbol on December 27, 2007, 06:18:25 PM
Have fun with modifying your files and with colors. :)
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on December 27, 2007, 06:53:47 PM
Wow, I was actually right. And I was scared, Bloc's code makes me want to run and hide most days. Glad I could be of help, allumius.
Title: Re: ColorizeBoards
Post by: allumius on December 28, 2007, 04:19:22 AM
Well i have a problem with:

Quote
Also, if you installed version 2.0 (not supported by verion 1.0), find this code

Quote
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';

and replace with

Quote
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')"><span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';

That will display colors of childboards in board index.

If I do it that indicates me, the names of the childboards do not appear in the principal index of the forums, under the name of the forums

Categoria
   |_Forum: Sport
        |_Childboard: (nothing appear!!!!)
Title: Re: ColorizeBoards
Post by: Bulakbol on December 28, 2007, 02:03:25 PM
Quote from: allumius on December 28, 2007, 04:19:22 AM
Well i have a problem with:

Quote
Also, if you installed version 2.0 (not supported by verion 1.0), find this code

Quote
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';

and replace with

Quote
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')"><span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';

That will display colors of childboards in board index.

If I do it that indicates me, the names of the childboards do not appear in the principal index of the forums, under the name of the forums

Categoria
   |_Forum: Sport
        |_Childboard: (nothing appear!!!!)

I hope you are not talking about the linktree. Check the attached pic with arrow. Thats the list of childboard in the board index. Make sure that you installed ColorizeBoards2.0 (version 2.0).

If you will look closely to the replacement of original codes, the only difference is the (blue)<span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';
Title: Re: ColorizeBoards
Post by: allumius on December 29, 2007, 10:20:07 AM
Yes i have the 2.0 version installed
Look the attachd pic please
Title: Re: ColorizeBoards
Post by: Bulakbol on December 29, 2007, 03:53:17 PM
Did you get errors when you installed the version 2.0?

If not, then you must have done the editing wrong.  Attach your BoardIndex.template.php and a link to your board.
Title: Re: ColorizeBoards
Post by: allumius on December 30, 2007, 06:33:06 AM
Here is mi boardindex.template.php
No, i have not error in the installation
the link is www.losamigotes.com/forum
Title: Re: ColorizeBoards
Post by: Bulakbol on December 30, 2007, 07:41:14 AM
Quote from: allumius on December 30, 2007, 06:33:06 AM
Here is mi boardindex.template.php
No, i have not error in the installation
the link is www.losamigotes.com/forum


You accidentally deleted one line of codes. Find
Quote$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')"><span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';

and after it, add

Quote$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];

It should looks like this:

Quoteforeach ($board['children'] as $child)
               {
                     $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')"><span style="color: '.$child['bcolor']. ';">' . $child['name'] . '</span></a>';
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
               }

Anyway, I edited your BoardIndex.template.php and I attached it here. You can download it and try. It should work.

Title: Re: ColorizeBoards
Post by: allumius on December 31, 2007, 05:31:49 AM
Thanks!!!
Now all ok!!!
Happy New Year 2008!!!!
Title: Re: ColorizeBoards
Post by: Bulakbol on January 01, 2008, 01:17:39 AM
That's good to hear. Happy New Year to all!
Title: Re: ColorizeBoards
Post by: Apllicmz on January 01, 2008, 02:57:15 AM
Thank you
Happy New Year  2008
Title: Re: ColorizeBoards
Post by: Bulakbol on January 01, 2008, 03:52:21 AM
Quote from: joomlamz on January 01, 2008, 02:57:15 AM
Thank you
Happy New Year  2008

Do you know that you can change your board description's color? In your BioardIndex.template.php, find

<br><font style="font-size: 8pt">', $board['description'], '</font>';
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)

and replace with:

<br><font style="font-size: 8pt"><span style="color: ', $board['dcolor'], ';">', $board['description'], '</span></font>';
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)


and in your MessageIndex.template.php, find

<font style="font-size: 8pt">', $board['description'], '</font>

and replace with

<font style="font-size: 8pt"><span style="color: ', $board['dcolor'], ';">', $board['description'], '</span></font>
Title: Re: ColorizeBoards
Post by: Apllicmz on January 01, 2008, 05:31:15 AM
ok
will text it
Title: Re: ColorizeBoards
Post by: Bulakbol on January 01, 2008, 10:27:41 PM
Goodluck!
Title: Re: ColorizeBoards
Post by: Kirok on January 03, 2008, 03:14:07 PM
Hi,

I just came across this Mod, and it is a wonderful idea!  Thank you!   :)

But one question... I am using the Core theme and followed your instructions to install the first version of the Mod, then uploaded 2.0 and its not working.  I get the area where I can put in my color choice, but nothing happens.

Any tips/tricks?

Thanks!

Kirok  :)
Title: Re: ColorizeBoards
Post by: Bulakbol on January 03, 2008, 03:26:50 PM
I thank you for the compliment.

The instruction is only if you already installed version 1.0. If you have not installed version 1.0, then install version 2.0 without installing version 1.0.

I think I have to remove version 1.0 as some are confused.

Uninstall version 1.0 then install version 2.0. The mod is for the core theme so there should be no problem. If you encounter problems, let me know.
Title: Re: ColorizeBoards
Post by: Kirok on January 03, 2008, 03:29:12 PM
Okay, I think I figured it out. 

It works now!!  I thought I had to install 1.0 first.

Thanks for the help!

Kirok  :)
Title: Re: ColorizeBoards
Post by: Bulakbol on January 03, 2008, 03:33:21 PM
You are welcome. Glad to hear you're ok now. I removed version 1.0 BTW.
Title: Re: ColorizeBoards
Post by: i2Paq on January 15, 2008, 05:32:18 AM
Hello JonnyB,

I'm getting errors during installation  :'(

1. Execute Code ColorizeBoardsDB.php 
2. Execute Modification ./Sources/Load.php Test successful
3. Execute Modification ./Sources/BoardIndex.php Test successful
4. Execute Modification ./Sources/MessageIndex.php Test successful
5. Execute Modification ./Sources/ManageBoards.php Test successful
6. Execute Modification ./Sources/Recent.php Test successful
7. Execute Modification ./Sources/Subs-Boards.php Test successful
8. Execute Modification ./Themes/default/ManageBoards.template.php Test successful
9. Execute Modification ./Themes/default/BoardIndex.template.php Test failed
10. Execute Modification ./Themes/default/MessageIndex.template.php Test failed
11. Execute Modification ./Themes/default/languages/Modifications.english.php Test successful


I use SMF 1.1.4, Any suggestions?

Title: Re: ColorizeBoards
Post by: Bulakbol on January 15, 2008, 05:43:28 AM
Hi 12Paq. Some mods alter BoardIndex.template.php and MessageIndex.template.php. You have to manually install the mod. Read the  install.xml from the package. Or use the parser hosted by Sleepy.

SMF Package Parser (http://sleepycode.com/PackageParser/index.php)

If you still have problem, let me know.
Title: Re: ColorizeBoards
Post by: i2Paq on January 15, 2008, 05:54:15 AM
Quote from: JohnyB on January 15, 2008, 05:43:28 AM
Hi 12Paq.

*knip*

Wauw, quick reply.

Thanks, I will try your suggestion.
Title: Re: ColorizeBoards
Post by: Bulakbol on January 15, 2008, 05:58:49 AM
I'm online so I can reply quick.  Quick reply too ha. :)
Title: Re: ColorizeBoards
Post by: ManilaGurL on January 17, 2008, 09:22:38 AM
Hello. I manually installed the mod, using Tiny Portal and Dilber MC theme but
I can't find it anywhere to edit the colors. Guess I did not do it right. Can you help?
Title: Re: ColorizeBoards
Post by: Bulakbol on January 17, 2008, 09:44:22 AM
Quote from: ManilaGurL on January 17, 2008, 09:22:38 AM
Hello. I manually installed the mod, using Tiny Portal and Dilber MC theme but
I can't find it anywhere to edit the colors. Guess I did not do it right. Can you help?

Hi ManilaGurl. Hmnn sounds familiar. I was mixed up, sorry. Can't you use the package manager? No errors in your error log? Let me know if you still need help.
Title: Re: ColorizeBoards
Post by: daragor on January 17, 2008, 06:08:57 PM
thanks! great mod! i use in overview theme!
Title: Re: ColorizeBoards
Post by: Louis EX on January 20, 2008, 01:00:51 AM
Link doesn't work. :(
Title: Re: ColorizeBoards
Post by: Bulakbol on January 20, 2008, 04:18:05 AM
Quote from: daragor on January 17, 2008, 06:08:57 PM
thanks! great mod! i use in overview theme!

That's good to know you made it work to your theme.


Quote from: Louis EX on January 20, 2008, 01:00:51 AM<br />Link doesn't work. :(<br />

I think there's problem with the download. I tried to download and I get blank screen on all the mods. But the number of download is increasing. Does that mean others can download and others cant?
Title: Re: ColorizeBoards
Post by: Bulakbol on January 22, 2008, 01:58:40 AM
Quote from: Louis EX on January 20, 2008, 01:00:51 AM
Link doesn't work. :(

Are you still having problem downloading?  It seems to work now.
Title: Re: ColorizeBoards
Post by: Stef001 on January 22, 2008, 08:23:10 AM
Hello i have the classic template.
How can i make this work.
I have ataaced the code.

Thanks for the help.
Title: Re: ColorizeBoards
Post by: Bulakbol on January 22, 2008, 02:46:24 PM
Hello Normally. Here's your modified Classic BoardIndex.template.php and MessagesIndex.template.php.  If you have problems, let me know.

<edit> deleted files. They are incomplete. </edit>
Title: Re: ColorizeBoards
Post by: Stef001 on January 22, 2008, 04:48:29 PM
Thanks,

Now i have still one problem.
In the post.template.php i don`t have: // Finally the most important bit - the actual text box to write in!

So i don`t know where to put the code, can you please help.
I have attached the code.

Thanks Stef.
Title: Re: ColorizeBoards
Post by: Garry1953 on January 22, 2008, 07:28:10 PM
Works fine
I'm using on my forum.
Thanks.
Title: Re: ColorizeBoards
Post by: Bulakbol on January 23, 2008, 12:38:12 AM
Quote from: Normally on January 22, 2008, 04:48:29 PM
Thanks,

Now i have still one problem.
In the post.template.php i don`t have: // Finally the most important bit - the actual text box to write in!

So i don`t know where to put the code, can you please help.
I have attached the code.

Thanks Stef.

awww I forgot about the post and topic count. That is part of the BoardIndex.template.php. I'll get back to you.


@Garry1953
    Nice setup.

I don't know if I have to extend board colors in Recent Posts and Stats.  If someone want it, I'll update the mod.
Title: Re: ColorizeBoards
Post by: Bulakbol on January 23, 2008, 01:18:00 AM
Quote from: Normally on January 22, 2008, 04:48:29 PM
Thanks,

Now i have still one problem.
In the post.template.php i don`t have: // Finally the most important bit - the actual text box to write in!

So i don`t know where to put the code, can you please help.
I have attached the code.

Thanks Stef.

That is part of BoardIndex.template.php.  I forgot about it, sorry. here's complete one. Both BoardIndex.template.php and MessageIndex.template.php.

Title: Re: ColorizeBoards
Post by: ceewee on January 30, 2008, 02:49:38 PM
I had to change it manuelly, but when putting file in 2 package parsers I have third piece in board.template.php is unreadable.
Checked source of xml but can't figure it out.
Can't read between the bars. Some empty lines would be nice in xml.


Btw, i have rss icon and more so I have to change a lot manuelly as first change in both board and emssage.template.

Title: Re: ColorizeBoards
Post by: Bulakbol on January 30, 2008, 03:03:58 PM
Hi ceewee. If I could help you , I will. Just let me know how and which file that you are having problem with. There are line numbers in the xml file to serve as a guide for manual installation. They are there only for approximation because custom theme of course have different lines from a virgin default core theme.
Title: Re: ColorizeBoards
Post by: dimdom on January 31, 2008, 10:29:18 AM
It works with two bugs....


Firts one in the attached picture...

and to error log I see a lot of these...

Undefined index: colorize_color
File: /----------/default/ManageBoards.template.php (eval?)
Line: 326


Any ideas?  :-\
Title: Re: ColorizeBoards
Post by: Bulakbol on January 31, 2008, 12:29:16 PM
Quote from: dimdom on January 31, 2008, 10:29:18 AM
It works with two bugs....


Firts one in the attached picture...

and to error log I see a lot of these...

Undefined index: colorize_color
File: /----------/default/ManageBoards.template.php (eval?)
Line: 326


Any ideas?  :-\

Hi dimdom. The problem is in the language file. Open default/Modifications.english.php. Find the ?> php tag and move it at the very end of the file. It should look like this.

$txt['colorize_color'] = 'Color';

?>


Let me know if that will solve your problem.
Title: Re: ColorizeBoards
Post by: dimdom on January 31, 2008, 07:18:49 PM
Thanx, JohnyB.

That was it.

Excellent and clean job.
Title: Re: ColorizeBoards
Post by: Bulakbol on February 01, 2008, 11:49:52 PM
You are welcome dimdom. Glad you are ok now.
Title: Re: ColorizeBoards
Post by: ceewee on February 11, 2008, 02:07:04 PM
Quote from: JohnyB on January 30, 2008, 03:03:58 PM
Hi ceewee. If I could help you , I will. Just let me know how and which file that you are having problem with. There are line numbers in the xml file to serve as a guide for manual installation. They are there only for approximation because custom theme of course have different lines from a virgin default core theme.
I don't have a virgin board , I have 95 mods installed :-)
when putting your file in the parser I couldn't read the third piece in board.template.php is unreadable.
Is that the one here on page 1?


Title: Re: ColorizeBoards
Post by: Bulakbol on February 11, 2008, 07:49:46 PM
Quote from: ceewee on February 11, 2008, 02:07:04 PM
I don't have a virgin board , I have 95 mods installed :-)
when putting your file in the parser I couldn't read the third piece in board.template.php is unreadable.
Is that the one here on page 1?


Hi Cewee. The parser' text were too tiny and hard to read isn't it. You need magnifying glass to read it properly. I am not too sure if it's the one in the first page.  Let me know if I can do something to help you. Try to install it manually and if you have problem after installing, then maybe attach the file that you have problem with and I'll see what I can do.
Title: Re: ColorizeBoards
Post by: iONic on February 24, 2008, 03:08:09 PM
As stated in earlier posts on this topic, the MOD changes in Admin panel BUT not on the board. And it is most likely because I have a different theme Scibble2 (http://custom.simplemachines.org/themes/index.php?lemma=331). So I attempted to modify both the BoardIndex.template.php and the MessageIndex.template.php but was unable to locate the exact code for replacement?

My apologies, the second file did not show up in a code box as intended.

Files are attached.
Title: Re: ColorizeBoards
Post by: Bulakbol on February 24, 2008, 04:56:29 PM
Wow Ionic, those were long. It looks neater if you just attached the files in question. I got 'em.  I'll take a look at them when I have a chance.
Title: Re: ColorizeBoards
Post by: iONic on February 24, 2008, 05:15:32 PM
Quote from: JohnyB on February 24, 2008, 04:56:29 PM
Wow Ionic, those were long. It looks neater if you just attached the files in question. I got 'em.  I'll take a look at them when I have a chance.

Your right, that was long! I intended both files to show up in a code box.  I tidied it up for the sake of the reader anyways!
Title: Re: ColorizeBoards
Post by: Bulakbol on February 25, 2008, 12:52:27 AM
Quote from: iONic on February 24, 2008, 05:15:32 PM
Quote from: JohnyB on February 24, 2008, 04:56:29 PM
Wow Ionic, those were long. It looks neater if you just attached the files in question. I got 'em.  I'll take a look at them when I have a chance.

Your right, that was long! I intended both files to show up in a code box.  I tidied it up for the sake of the reader anyways!

Hi Ionic. Here's your edited BoardIndex.template.php and MessageIndex.template.php. Let me know if there's problem.

<edit> Attachment deleted </edit>
Title: Re: ColorizeBoards
Post by: iONic on February 25, 2008, 02:26:40 PM
Quote from: JohnyB on February 25, 2008, 12:52:27 AM
Hi Ionic. Here's your edited BoardIndex.template.php and MessageIndex.template.php. Let me know if there's problem.

JohnyB,

Absolutely Perfect. Thanks for the help, no....for the doing of the work! I appreciate it. Now I will have to compare code, so that I might be able to do this myself to other themes if needed.  By the way, did you find the code I could not?

iONic
Title: Re: ColorizeBoards
Post by: Bulakbol on February 26, 2008, 01:15:40 AM
Hi iOnic. You are welcome.  ;) Yes, I found the code that you can't find. The theme changed the position of the number of post.
Title: Re: ColorizeBoards
Post by: nguyen on February 27, 2008, 06:58:28 AM
Hi JohnyB,
It seem the color is not working at recent posts in version 2.0? Please confirm that for me.
Thanks
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on February 27, 2008, 08:28:50 AM
I don't believe it's supposed to.
Title: Re: ColorizeBoards
Post by: Bulakbol on February 27, 2008, 05:25:10 PM
Quote from: nguyen on February 27, 2008, 06:58:28 AM
Hi JohnyB,
It seem the color is not working at recent posts in version 2.0? Please confirm that for me.
Thanks

Wait, haha, not too sure now. I thought I included the recent post but not the stats page. I will check the mod again and if not included, I will update the mod and include the recent and stats page. Thanks for trying this mod.  :)

<EDIT>
  It is now updated. Extended to Recent posts and Stats page.
</EDIT>
Title: Re: ColorizeBoards
Post by: denzil69 on March 05, 2008, 03:58:31 PM
cracking mod this one,

installed it with smf 1.1.4, with default theme
(not a virgin install tho) had 3 other mods installed. end result, everything worked fine, but (as with some other mods) it displayed $code at the top of every page. i uninstalled.

ive installed 5 mods now, thought id have another go at the colorize, thistime boardindex template failed, so i did not proceed with the install.

is there no way around installing this mod without removing everything then starting again from scratch?

thanks
Title: Re: ColorizeBoards
Post by: Bulakbol on March 05, 2008, 11:22:04 PM
If you want to, you can attach your BoardIndex.template.php and I'll edit it for you. Then you can go ahead with the installation after my edit.  Do not install yet until I give you back your BoardIndex.template.php.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 07:10:18 AM
appreciate the help. ill post when i manage to find the boardtemplate, and when i can save to desktop then attach to a post :)

thanks for your time
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 07:22:40 AM
ive found the editing page i think for the classic theme (is this the default one?)

i copied it to notepad and saved to desktop, where ive attached it to this reply, im not upto speed with locating files yet, so being a bit numb i thought if i could download the notepad file you send back, to my desktop, i could copy all, place in the edit box and then save changes???

thanks again
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 11:55:35 AM
Hi denzil69. I have your BoardIndex.template.php. I'll look at it and will do the changes for you. I will upload it back as BoardIndex.template.php and all you have to do is download it from here and upload it to your server. You don't have to load it to your notepad. I'll get back to you as soon as I can.


EDIT:
  I am back. Here's your edited classic/BoardIndex.template.php. Hope it will be all okay.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 01:50:03 PM
reet im back, ill download then upload via ftp program? into the folder where i store my stuff.

ill report back and let you know how i get on....
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 01:58:20 PM
huge apologies,
i appear to have made an error.

ive found (via ftp program) in themes, classic, default and babylon.

the boardtemplate i posted for you was for the "classic" theme, i have the default layout running!
is the board template the same for both themes? (im guessing not)

need to check before i upload...

sorry for my numbness
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 02:01:48 PM
No, they are not the same. But if you are using the default one, then you just install the mod and if there's no failed test, it will be okay.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 02:10:36 PM
tried to install the mod, sadly error in boardtemplate.php

ive included the correct template here, although i wouldnt blame you if have had enough of helping me...
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 02:15:33 PM
LOL, we all make mistake. I'll get back to you bud. No worries.


EDIT:
  Here's your modified BoardIndex.template.php Denzil69. Try this one. Just post if you still have problem. Good luck bud.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 03:40:26 PM
I uploaded the board to server, went to packages to install the mod, still says test failed: boardtemplate.php
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 04:04:10 PM
Quote from: denzil69 on March 06, 2008, 03:40:26 PM
I uploaded the board to server, went to packages to install the mod, still says test failed: boardtemplate.php

Here's what your should do. Install the mod first without the BoardIndex.template.php that I edited. It will fail BoardIndex.template,php but go ahead with the installation. Then after the installation, upload the file that I edited.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 04:51:29 PM
ok the mod's installed and the edited boardindex that you made has been uploaded.

i have colours changable now for the headers, but i have the following appearing at the top of every page: $txt['colorize_color'] = 'Color';

EDIT:
8: Undefined index: colorize_color
File: ....Themes\default\ManageBoards.template.php (eval?)
Line: 139
this is the log error if that helps
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 05:18:41 PM
Open your default/languages/Modifications.english.php and look for the closing php tag  "?>". Move it at the very bottom. Must looks like this.

$txt['colorize_color'] = 'Color';

?>


That should get rid of the error. Let me know how it goes.
Title: Re: ColorizeBoards
Post by: denzil69 on March 06, 2008, 05:31:44 PM
excellent, the coding has gone from the top of page, i shall clear the logs and then check again tomorrow.

colours working fine as well, excellent mod, and excellent support!

now if only you could tell me how to pick the winner in the 330 at doncaster tomorrow....

thanks again

Denz
Title: Re: ColorizeBoards
Post by: Bulakbol on March 06, 2008, 05:52:32 PM
That's great Dens. lol good luck though haha. Thanks for trying this mod.
Title: Re: ColorizeBoards
Post by: Bulakbol on March 23, 2008, 05:04:18 AM
Updated the mod for SMF 2.0 Beta 3 Public. 
- will colorize linktree as well.

ColorizeBoards2.1 is for SMF 1.1.4  and

ColorizeBoard2.2.2 is for SMF 2.0 Beta 3 Public.
Title: Re: ColorizeBoards
Post by: Apllicmz on March 23, 2008, 09:00:12 AM
Good Work for beta 2.0
Title: Re: ColorizeBoards
Post by: Bulakbol on March 23, 2008, 02:24:09 PM
Thanks Joomlams  ;)

The new version for SMF 2.0 Beta 3 Public support the ff. Themes.
- Babylon
- Classic
- Default Core
Title: Re: ColorizeBoards
Post by: D.S on March 28, 2008, 10:04:41 AM
Hey JohnyB

I'm here again  :D

sorry , I'm always need help  :(

I tried to upload the mod manually but unfortunately I failed
so I'd be very pleased If you helped me ..

I attach u my boardindex.template.php & messageindex.template.php

note: I use Dilber theme & 1.1.4

Best Regards
D.S
Title: Re: ColorizeBoards
Post by: Bulakbol on March 28, 2008, 01:00:21 PM
Hi D.S. I'll get back to you as soon as I finish editing them. Thanks for trying this mod.

<EDIT>
I am back. Here's your dilberMC BoardIndex.template.php and MessageIndex.template.php. Both are edited. Don't forget to edit your index.template.php so the lintree will be displayed in color too. Thanks for using this mod.
</EDIT>
Title: Re: ColorizeBoards
Post by: D.S on March 28, 2008, 03:11:57 PM
thank u dude ..
Excellent and clean job ..

Best regards



Title: Re: ColorizeBoards
Post by: Bulakbol on March 28, 2008, 03:17:28 PM
You are welcome. Thanks dude for using/trying.  :D
Title: Re: ColorizeBoards
Post by: Manu.G on March 28, 2008, 05:27:46 PM
Hi, I promised some translations.

German:
<!-- default/Languages/Modifications.german.php -->
    <file name="$languagedir/Modifications.german.php">
        <operation>
            <search position="end"></search>
            <add><![CDATA[
$txt['colorize_color'] = 'Farbe';
]]></add>
        </operation>
    </file>


Italian:
<!-- default/Languages/Modifications.italian.php -->
     <file name="$languagedir/Modifications.italian.php">
         <operation>
             <search position="end"></search>
             <add><![CDATA[
$txt['colorize_color'] = 'Colore';
]]></add>
         </operation>
     </file>


French:
<!-- default/Languages/Modifications.french.php -->
     <file name="$languagedir/Modifications.french.php">
         <operation>
             <search position="end"></search>
             <add><![CDATA[
$txt['colorize_color'] = 'Couleur';
]]></add>
         </operation>
     </file>


Dutch:
<!-- default/Languages/Modifications.dutch.php -->
      <file name="$languagedir/Modifications.dutch.php">
          <operation>
              <search position="end"></search>
              <add><![CDATA[
  $txt['colorize_color'] = 'Kleur';
  ]]></add>
          </operation>
      </file>


Romanian
<!-- default/Languages/Modifications.romanian.php -->
      <file name="$languagedir/Modifications.romanian.php">
          <operation>
              <search position="end"></search>
              <add><![CDATA[
  $txt['colorize_color'] = 'Culoarea';
  ]]></add>
          </operation>
      </file>


It was only a single word, wasn't that much to translate. ;)
Title: Re: ColorizeBoards
Post by: Bulakbol on March 29, 2008, 08:05:54 PM
Thanks Manu0372. I appreciated the translation. I'll update the mod when I get home.
Title: Re: ColorizeBoards
Post by: cassie on March 31, 2008, 09:57:13 AM
This may be a dumb question...

What colors are available as options? Only the colors allowed in posts or can you use some of the "web safe" color names.

Love this mod! I just installed it today.
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on March 31, 2008, 11:43:35 AM
Any hex color you can come up with.
Title: Re: ColorizeBoards
Post by: Mystiquo on March 31, 2008, 08:50:53 PM
Because the name moderator and subsection are white? And why the name "Legato" which is a supermod is gray and isn't what can be based on the color group( in this case black)?
Title: Re: ColorizeBoards
Post by: Bulakbol on April 01, 2008, 01:34:33 AM
Quote from: Mystiquo on March 31, 2008, 08:50:53 PM
Because the name moderator and subsection are white? And why the name "Legato" which is a supermod is gray and isn't what can be based on the color group( in this case black)?

Hi Mystiquo. This mod colorize only the boards and childboards name. You should use different mod for your moderator's name like Member Color Link (http://custom.simplemachines.org/mods/index.php?mod=111).


Quote from: cassie on March 31, 2008, 09:57:13 AM<br />This may be a dumb question...<br /><br />What colors are available as options? Only the colors allowed in posts or can you use some of the "web safe" color names. <br /><br />Love this mod! I just installed it today.<br />

Hi Cassie. Thanks for using this mod. Eliana is correct about the colors.  Any hex color will be supported.  ;)


@Manu0372. Thanks for all the language translations. I will update the package today.
Title: Re: ColorizeBoards
Post by: Mystiquo on April 01, 2008, 04:00:41 AM
but it' s not impossible color moderator e child???
Title: Re: ColorizeBoards
Post by: Bulakbol on April 01, 2008, 04:09:50 AM
It will colorize the name of child boards but not the moderators. Install the Member Color Link so you can get colors for your Moderators. If you want color for your moderators, I can probably tell you what to edit. Are you willing to edit template files?
Title: Re: ColorizeBoards
Post by: Mystiquo on April 01, 2008, 01:28:56 PM
look the photo i want color "moderatore" and "sottosezioni" ok?
Title: Re: ColorizeBoards
Post by: Bulakbol on April 02, 2008, 08:10:30 PM
Quote from: Mystiquo on April 01, 2008, 01:28:56 PM
look the photo i want color "moderatore" and "sottosezioni" ok?

What is "sottosezioni" in english? And what theme are you using again?

Title: Re: ColorizeBoards
Post by: Eliana Tamerin on April 02, 2008, 09:18:01 PM
I'm assuming that's the child boards.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 03, 2008, 03:52:50 AM
@Eliana. Thanks.  ;)

@Mystiquo. If your theme is not supported by this mod, you have to install it manually. If your sottosezioni (Childboards) aren't displayed with color, then the mod is probably improperly installed. If you want me to check/edit the templates in question, attach your BoardIndex.template.php and MessageIndex.template.php to your next post.
Title: Re: ColorizeBoards
Post by: Stef001 on April 04, 2008, 05:35:36 PM
Hello JohnyB,

Can you change my MessageIndex.template.php and BoardIndex.template too.
I have attached the files.

Thanks,
Stef.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 04, 2008, 06:55:36 PM
Hi Normally. Sure, I'll get back to you after. Thanks for using this mod.
Title: Re: ColorizeBoards
Post by: Stef001 on April 04, 2008, 07:53:48 PM
Quote from: JohnyB on April 04, 2008, 06:55:36 PM
Hi Normally. Sure, I'll get back to you after. Thanks for using this mod.
Thanks,

Je bent een kanjer (Dutch)
You are a great guy. ( Englisch)
Title: Re: ColorizeBoards
Post by: Bulakbol on April 04, 2008, 11:52:15 PM
Quote from: Normally on April 04, 2008, 07:53:48 PM
Quote from: JohnyB on April 04, 2008, 06:55:36 PM
Hi Normally. Sure, I'll get back to you after. Thanks for using this mod.
Thanks,

Je bent een kanjer (Dutch)
You are a great guy. ( Englisch)

Lol. Thanks for the compliment.  Here's your BoardIndex.template.php and your MessageIndex.template.php. I changed some of the codes but they are alright. Make a backup of the original before uploading these two files.
Title: Re: ColorizeBoards
Post by: Stef001 on April 05, 2008, 07:30:46 AM
Thanks,

All works great now.

Stef.
Title: Re: ColorizeBoards
Post by: Stef001 on April 05, 2008, 08:21:14 AM
Hi,

Is it also possible to color the sub-boards????

Stef.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 05, 2008, 06:36:21 PM
Yes. If you change the color of your childboards (sub-boards)' names, of course they will be displayed in color. Try it and if it won't work, let me know.
Title: Re: ColorizeBoards
Post by: Stef001 on April 06, 2008, 03:57:26 PM
Quote from: JohnyB on April 05, 2008, 06:36:21 PM
Yes. If you change the color of your childboards (sub-boards)' names, of course they will be displayed in color. Try it and if it won't work, let me know.

I tried it, but it won`t work.
In admin i see the changes, but not in the forum.
Title: Re: ColorizeBoards
Post by: johnnyskd on April 06, 2008, 05:24:08 PM
Hello JohnyB,

Very nice mod!  Thanks for making it.  I am using the INVAZION 114 theme with TP 1.0.5.

I have modified the boardindextemplate.php and it works just fine.  When I went to modify the messageindextemplate.php  the changes did not show up. So re-installed the (original) messageindextemplate.php and was wondering if you could be so kind as to help me with this?

Thank you kindly,

Johnny
Title: Re: ColorizeBoards
Post by: Bulakbol on April 06, 2008, 10:21:13 PM
Quote from: Normally on April 06, 2008, 03:57:26 PM
Quote from: JohnyB on April 05, 2008, 06:36:21 PM
Yes. If you change the color of your childboards (sub-boards)' names, of course they will be displayed in color. Try it and if it won't work, let me know.

I tried it, but it won`t work.
In admin i see the changes, but not in the forum.

Ok, I'll check your MessageIndex.template.php again. I might missed a code. I'll get back to you.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 06, 2008, 10:23:05 PM
Quote from: johnnyskd on April 06, 2008, 05:24:08 PM
Hello JohnyB,

Very nice mod!  Thanks for making it.  I am using the INVAZION 114 theme with TP 1.0.5.

I have modified the boardindextemplate.php and it works just fine.  When I went to modify the messageindextemplate.php  the changes did not show up. So re-installed the (original) messageindextemplate.php and was wondering if you could be so kind as to help me with this?

Thank you kindly,

Johnny

Hi Johnyskd. Sure. I have your MessageIndex.template.php. I'll be very tomorrow morning so I'll upload the edited one in the afternoon. Thanks for using this mod.

<Edit>
Can't find your theme. Can you attach it here so i can make sure the edit work? Just the invazion theme.
</edit>
Title: Re: ColorizeBoards
Post by: Stef001 on April 07, 2008, 06:29:39 AM
@JohnyB
Ok, I'll check your MessageIndex.template.php again. I might missed a code. I'll get back to you.

I attach the MessageIndex.template.php again.
Thanks
Title: Re: ColorizeBoards
Post by: cassie on April 07, 2008, 12:31:17 PM
Thanks JohnyB. I'm having a lot of fun using this mod. Sure makes it easy to customize your board.

Keep up the good work!
Title: Re: ColorizeBoards
Post by: Bulakbol on April 07, 2008, 07:03:15 PM
@ Normally, I got your files. I checked your last files that I edited and they both display colored childboards. I will check the new ones and see if there's code that I missed.


@Cassie. Thanks a bunch bud for the compliment. I thank you too for using this mod.  ;)


<EDIT>
Normally, there's nothing wrong with your two files. I tried it and displays colored childboards. I don't know where the problem is. Post a link to your site or PM me temporary admin access and I'll check what is wrong.
</EDIT>
Title: Re: ColorizeBoards
Post by: Sabre™ on April 08, 2008, 03:55:11 AM
Sup JohnyB.
Another nice mod mate :)     Thanks for that.

Ive got this showing at the top of my screen though

$txt['colorize_color'] = 'Color';

Any idea what this is?
Title: Re: ColorizeBoards
Post by: Manu.G on April 08, 2008, 04:30:35 AM
I guess $txt['colorize_color'] = 'Color'; is placed behind ?>

I guess your code looks like this:
?>
$txt['colorize_color'] = 'Color';


but it must be:
$txt['colorize_color'] = 'Color';
?>


Move the ?> behind the text string and everything will be fine. ;)
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on April 08, 2008, 08:21:30 AM
What Manu0372 forgot to say was, look in your Modifications.english.php file in your /Themes/default/languages folder. ;)
Title: Re: ColorizeBoards
Post by: Manu.G on April 08, 2008, 08:53:11 AM
Quote from: Eliana Tamerin on April 08, 2008, 08:21:30 AM
What Manu0372 forgot to say was, look in your Modifications.english.php file in your /Themes/default/languages folder. ;)

Yes, the mistake is in the Modifications.english.php. :)
Sorry, every time when I try to help I forget something.  :'(
Next time I will be much carefully. :)
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on April 08, 2008, 09:14:23 AM
No problem, just wanted Sabre to know where the file was so he could change it.
Title: Re: ColorizeBoards
Post by: johnnyskd on April 08, 2008, 02:21:01 PM
Sorry for the delay on getting back with you Johnyb here is the theme.

Thank you kindly!
Title: Re: ColorizeBoards
Post by: RAM Tiny on April 08, 2008, 07:12:55 PM
How u doing installed your 2.2 mod went in fine but when I went to do the colors for the full name it work fine then went to change the Description color it would not work. so I download your 2.2.2 mod went to install it got all sorts of error that cam up and smf told me not to use it. any clue what would be wrong
Title: Re: ColorizeBoards
Post by: Bulakbol on April 08, 2008, 08:19:55 PM
@Sabre. Did Eliama and Manu0372's advice work for you? Yes, Eliana ang Manu0372 are correct. Let me know if you still have problem.

@Eliana ang Manu0372. Thanks guys. I was late.  :P

@Johnyskd. I'll get back to you bud. I have the file that you attached.

@Ram Tiny. Sorry for the errors and confusion. I will combine the two versions to 1 package soon to avoid more confusion. Most mod if not all install only in the default theme unless stated. If you are using custom theme, you have to manually install to index.template.php, BoardIndex.template.php and MessageIndex.template.php. Version 2.2.2 is for Beta 3 public and the 2.2 is for 1.1.4. SMF told you not to use it? Is there any specific reason why?If you need help, I could help you. Just attach the files that you want me to edit for you.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 08, 2008, 08:50:11 PM
Quote from: johnnyskd on April 08, 2008, 02:21:01 PM
Sorry for the delay on getting back with you Johnyb here is the theme.

Thank you kindly!

Here's your MessageIndex.template.php. Make a backup of your original copy. If I missed something, let me know. Thanks for using this mod.  8)
Title: Re: ColorizeBoards
Post by: Sabre™ on April 11, 2008, 10:10:15 AM
Thank You all.
I have put installing this Mod on hold, as when manually installing this, I saw that most instances where I should edit, Have already been with other mods, so I would have to spend a bit of time trying to fit everything together.
Thank You Eliama and Manu0372, as soon as I read your reply, the hand went smack into the forehead, with an "Of course" bellowing from my tired body.  lol

I will reinstall this sometime through the week, and if I need some assistance, I know where to come ;)

ty :)
Title: Re: ColorizeBoards
Post by: Bulakbol on April 12, 2008, 02:41:44 AM
Hi Sabre. We are here waiting for you to come back. I can always help you to edit your template files if you ask me to. But it's fun if you'll do it yourself. lol  Thanks for trying this mod.
Title: Re: ColorizeBoards
Post by: Zat on April 16, 2008, 12:48:10 PM
Good mod, thanks for the work on it.

I do have a problem in my error logs with a complaint about an index on board_color.

8: Undefined index: board_color
File: /homepages/31/d241880079/htdocs/forum/Sources/Recent.php
Line 141  (and 142, alternating)


These are the lines being referred to :

141 : 'bcolor' => $row['board_color'],
142 : 'link' => '<a href="' . $scripturl . '?board=' . $row['ID_BOARD'] . '.0"><span style="color:'. $row['board_color']. ';">' . $row['bName'] . '</span></a>'


I've gotten several thousand pages of errors since installing yesterday.

The error message seemed obvious to me, so I built an index on board_color in my dbname_boards table. But I am still getting errors.

I've double checked the code changes, and the mod seemed to have installed fine, it also works perfectly, but it is jamming up my error logs.

Any help on this would be much appreciated. Thanks.

Title: Re: ColorizeBoards
Post by: Bulakbol on April 16, 2008, 01:50:12 PM
Hi Zat. Thanks for trying/using this mod. It looks like there's missing query. Check around line 91 of your Sources/Recent.php.
m.posterTime, m.subject, m.ID_TOPIC, m.ID_MEMBER, m.ID_MSG, b.board_color,

The "b.board_color," might be missing or misspelt. Add if it is missing. Let me know how it goes.
Title: Re: ColorizeBoards
Post by: Zat on April 16, 2008, 03:04:31 PM
Looks like that did it Johny.

Thanks much for the help !
Title: Re: ColorizeBoards
Post by: Gà Mái on April 17, 2008, 10:26:52 AM
It so good! Thanks JohnyB. All my luv! ^^
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 21, 2008, 10:37:04 AM
Hi can someone please help with what i need change in order to get this working on my theme. Im using the AA New Damage theme.

I have installed the mod but when i load it in the package parser there seems to be bugs on it. Can anyone tell me what i need to change in my theme to get this working properly

thank you. oh and im using 1.1.4 smf version
Title: Re: ColorizeBoards
Post by: Bulakbol on April 21, 2008, 02:48:35 PM
@Zat. Good th hear Zat. Cool.

@Ga Mai. Thank you for trying/using this mod.  ;)

@Neo-Bahamut.  Attach your BoardIndex.template.php and MessageIndex.template.php and I'll try to edit them for you.
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 22, 2008, 04:16:26 AM
FAO Johnny B as requested above
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 22, 2008, 01:19:31 PM
johnny?
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 23, 2008, 03:07:02 PM
can anyone help me???
Title: Re: ColorizeBoards
Post by: Bulakbol on April 23, 2008, 09:45:44 PM
Quote from: NEO-BAHAMUT- on April 23, 2008, 03:07:02 PM
can anyone help me???

Hi Neo. Sorry for the late reply. I am not at home right now. My ISP have problem and will be fixed tomorrow. I will download your template tomorrow and I'll do the edit. Sorry about that.
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 24, 2008, 04:29:34 AM
No worries and thank you.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 24, 2008, 02:21:38 PM
Quote from: NEO-BAHAMUT- on April 24, 2008, 04:29:34 AM
No worries and thank you.

Hi Neo. I am home and here's your edited BoardIndex.template.php and MessageIndex.template.php. Let me know if they are okay. Thanks for using/trying this mod.

Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 24, 2008, 03:36:34 PM
could you please tell me what you have done to get this working i am just about to try it....
Title: Re: ColorizeBoards
Post by: Bulakbol on April 24, 2008, 03:43:44 PM
Backup your AA_New_Damage/BoardIndex.template.php and MessageIndex.template.php then install the ColorizeBoards mod. Then upload the files that I edited to your AA_New_Damage folder. That's all.  :)
Title: Re: ColorizeBoards
Post by: NEO-BAHAMUT- on April 24, 2008, 04:13:22 PM
cheers mate...... i will do that now. Could you tell me where i was going wrong and what edits i was supposed to do etc.
Title: Re: ColorizeBoards
Post by: Bulakbol on April 24, 2008, 04:25:14 PM
Quote from: NEO-BAHAMUT- on April 24, 2008, 04:13:22 PM
cheers mate...... i will do that now. Could you tell me where i was going wrong and what edits i was supposed to do etc.

Most mods (if not all) install in the default theme. If you are using custom theme, you have to install the mod manually.  You can use the Package Parser (http://sleepycode.com/PackageParser/index.php) or the "Manual Install Instructions for SMF" which you can find under the package file in the download section.
Title: Re: ColorizeBoards
Post by: David111567 on May 05, 2008, 06:44:23 AM
Hi...I have a problem and I really hope you can help me with it.  I installed ColorizeBoards on SMF 1.1.4 with no issues or problems. I even backed up the database PRIOR to doing this, as I always do with any mod.  The MOD is GREAT!! Works as it should, installed with no errors.  BUT....

I now cannot add any boards...or categories. I can also no longer delete any boards or categories.  I am 100 percent positive that there were no errors during install...and I am equally 100 percent sure that this wasn't happening prior to this mod installation.

To add insult to injury...I uninstalled the mod...it still presents the same problem....no adding or deleting or modifying boards or categories.  And that backup that I made of SQL prior to installation.....yep...corrupt.  When it rains it pours.

Do you have any indication of what this problem might be and if I can fix it? I really need this fixed badly.

Can ya help me?

Thanks,

David
Title: Re: ColorizeBoards
Post by: Bulakbol on May 07, 2008, 06:27:16 AM
Hi David111567. Not nice to hear but this mod does not lock any fields or tables. It does add fields but that's about it. Talk to your host and find out why it is happening. I don't think this mod causes the board problem.
Title: Re: ColorizeBoards
Post by: ^code_future^ on July 01, 2008, 07:03:31 PM
what should I do to have this mod working on non-english language...

I have Serbian-lat-utf8 language pack, tested on english and it is working, but not on my language...
Title: Re: ColorizeBoards
Post by: Bulakbol on July 01, 2008, 08:31:48 PM
@DachaArh.
Open your default/languages/Modifications.serbian-lat-utf8.php and add this line at the very bottom before the ?> tag
$txt['colorize_color'] = 'Color';

You can translate the word "Color" to Serbian language.
Title: Re: ColorizeBoards
Post by: Kimmen on July 17, 2008, 03:46:17 PM
Hey JohnyB  :D

I want to innstall this mod on my forum. Im using 1.1.4 and have innstalled MCLegendII.2 mod and thats the only mod i have innstalled at the forum. When applying the mode i get this:

10.     Execute Modification     ./Themes/default/BoardIndex.template.php     Test failed

Thats the only thing that fails. I have not innstalled this mod becuase of this and wonder what to do next.


Greetings
Kim
Title: Re: ColorizeBoards
Post by: Bulakbol on July 18, 2008, 12:30:28 AM
@^code_future^
Have you tranlated the language string to your language?


@Kim Arne
Attach your BoardIndex.template.php and I'll try to edit it for you.
Title: Re: ColorizeBoards
Post by: Kimmen on July 18, 2008, 02:55:34 AM
Here is my boardindex.

I have not innstalled the mode yet.
Title: Re: ColorizeBoards
Post by: Bulakbol on July 19, 2008, 06:56:46 PM
@Kim Arne
   I don't know why all lines in your BoardIndex.template.php are double spaced. Any mod that search for two or more lines will fail. I managed to edit your BoardIndex.template.php btw and attached. Use it after the installation.
Title: Re: ColorizeBoards
Post by: Kimmen on July 20, 2008, 07:40:19 AM
Thx, i tried to innstall and that went ok. I have also added this file you edited, and that went ok also. But i only get the categorys in forum to show colour. Not the Forum Boards or Board description. I can see the fields for adding colour, but when i do, it wont work.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fbildr.no%2Fimage%2F229571.jpeg&hash=4148f9d6225dbdde73f5a8d436631f9f20caa01d)

As you can see, categorys work, but Boards doesent. (Too se picture, right click and view image)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fbildr.no%2Fimage%2F229576.jpeg&hash=4fd955e4180461378dd562b1e766f6d0e60f6309)

I can see the fields, no problem. When i enter a colourcode and press modify, it doesent work. When i come back to the admin panel, the colour i enter is gone. Its like it wont save the colour.

I have sent you an admin account on PM, that yopu can login to my site and perhaps fix it from there if you have time.

(Too se picture, right click and view image)

Greets
Kim
Title: Re: ColorizeBoards
Post by: tk2012 on July 31, 2008, 02:39:29 AM
I loaded this on v2.0 b3.1 and as I expected... NO PROBLEMS WHATSOEVER!

I'm using the default theme and have at least 20 other mods on my site.  I noticed that the MOD LINK does not list b3.1 but does list b3.  In case anyone was wondering, it worked perfectly for me.

I will say it again and again... YOU ROCK !!!!!!!!!!!!
Title: Re: ColorizeBoards
Post by: ManilaGurL on July 31, 2008, 07:05:44 AM
Will this work on SMF1.1.5, DilberMC and Tinyportal installed?
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on July 31, 2008, 10:12:13 AM
Have you tried it? You may need to manually edit DilberMC's files, but otherwise it should work, yes.
Title: Re: ColorizeBoards
Post by: ManilaGurL on July 31, 2008, 10:34:50 AM
What do I need to edit?

10.     Execute Modification     ./Themes/default/BoardIndex.template.php     Test failed
11.    Execute Modification    ./Themes/default/MessageIndex.template.php    Test failed


Installations actions for "Colorize Boards":
Installing this package will perform the following actions:
Type Action Description
1. Execute Code ColorizeBoardsDB114.php
2. Execute Modification ./Sources/Load.php Test successful
3. Execute Modification ./Sources/BoardIndex.php Test successful
4. Execute Modification ./Sources/MessageIndex.php Test successful
5. Execute Modification ./Sources/ManageBoards.php Test successful
6. Execute Modification ./Sources/Recent.php Test successful
7. Execute Modification ./Sources/Stats.php Test successful
8. Execute Modification ./Sources/Subs-Boards.php Test successful
9. Execute Modification ./Themes/default/ManageBoards.template.php Test successful
10. Execute Modification ./Themes/default/BoardIndex.template.php Test failed
11. Execute Modification ./Themes/default/MessageIndex.template.php Test failed
12. Execute Modification ./Themes/default/index.template.php Test successful
13. Execute Modification ./Themes/classic/BoardIndex.template.php Test successful
14. Execute Modification ./Themes/classic/MessageIndex.template.php Test successful
15. Execute Modification ./Themes/classic/index.template.php Test successful
16. Execute Modification ./Themes/babylon/BoardIndex.template.php Test successful
17. Execute Modification ./Themes/babylon/MessageIndex.template.php Test successful
18. Execute Modification ./Themes/babylon/index.template.php Test successful
19. Execute Modification ./Themes/default/languages/Modifications.english.php Test successful
20. Execute Modification ./Themes/default/languages/Modifications.german.php Skipping file
21. Execute Modification ./Themes/default/languages/Modifications.italian.php Skipping file
22. Execute Modification ./Themes/default/languages/Modifications.french.php Test successful
23. Execute Modification ./Themes/default/languages/Modifications.dutch.php Skipping file
24. Execute Modification ./Themes/default/languages/Modifications.romanian.php Skipping file
Title: Re: ColorizeBoards
Post by: Bulakbol on July 31, 2008, 06:13:01 PM
@Manilagurl
  Attach your altered BoardIndex.template.php and MessageIndex.template.php and I'll edit them when I have spare time.
Title: Re: ColorizeBoards
Post by: ManilaGurL on August 01, 2008, 12:37:40 AM
Attached are the two files. Thanks for being helpful, JohnyB.. I hope this won't be the last as I really like your mods. LOL! *hint : Stars and Badges* :)
Title: Re: ColorizeBoards
Post by: Bulakbol on August 01, 2008, 01:49:47 AM
Here are your files Manilagurl. Please use them after you installed the new version of ColorizeBoards mod. Thanks for using this mod.
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 02:03:39 AM
I have ColorizeBoards mod installed But I have one problem look at the screen shot


(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi287.photobucket.com%2Falbums%2Fll129%2Fblouogies%2Ftg-1.png&hash=e154ee5c5b96237b8d279b964bb8a2aa33ff7a44)

Where the red arrow are that color shouldn't be orange it should change to the color of that board right?

As I understand I should edit the template files... So how do I do that?
Title: Re: ColorizeBoards
Post by: Eliana Tamerin on August 01, 2008, 02:05:41 AM
I don't believe that's part of the change. Though you could probably include that anyways.
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 02:23:30 AM
ok but how can I edit my  template  files to change colors because it looks silly  >:(
Title: Re: ColorizeBoards
Post by: Bulakbol on August 01, 2008, 02:31:25 AM
If you want to include the "last post by", you have to edit your BoardIndex.template.php and look for
<b>', $txt[22], '</b>  ', $txt[525], ' ', $board['last_post']['member']['link'] , '<br />

replace
<span style="color: ', $board['bcolor'], '"><b>', $txt[22], '</b>  ', $txt[525], '</span> ', $board['last_post']['member']['link'] , '<br />

If you can't find the code then I can't help you without telling me which theme you are using.
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 02:45:51 AM
Ok this has changed -

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi287.photobucket.com%2Falbums%2Fll129%2Fblouogies%2Fhelp-1.png&hash=5d8b132319bb5221eef2c5c56bbd2d9f90e45ece)

Btw I'm using SMF 1.1.5 and the theme I'm using is TG Colors made by Smoky.

I have attached my boardindex file of the default theme too.
Title: Re: ColorizeBoards
Post by: ManilaGurL on August 01, 2008, 03:28:45 AM
It worked like a charm! Thanks again, JohnyB! :)
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 03:35:01 AM
I have missed understood you JohnyB yes I agree with ManilaGurL  it does work like a charm.

How can I edit the rest of the orange with the same color as each borad?
Title: Re: ColorizeBoards
Post by: jayc7176 on August 01, 2008, 03:45:33 AM
Dayyym  JohnyB Such Nice mods you have been doing for the community!

Many Thanks Mate
Title: Re: ColorizeBoards
Post by: Bulakbol on August 01, 2008, 04:13:25 AM
@blouogies20 
   Try this one. Attached.

@jayc7176
   Thank you too for using this mod.
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 04:51:39 AM
Johnny it looks better

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi287.photobucket.com%2Falbums%2Fll129%2Fblouogies%2FT.png&hash=cdba60a828214dde33cd359408e00e30d34ab3ac)

How will I get rid of the orange isn't there a way to change that to the same color as the board?

Sorry for being such pain!!!  O:)
Title: Re: ColorizeBoards
Post by: bran8464 on August 01, 2008, 06:11:01 AM
Hi

I really like this mod and it worked well on my 1.1.5, default site. I had to roll back to when there were no mods installed and start again because of problems I had. I reinstalled 8 mods in a certain order and everything was fine. I then tried to reinstall ColorizeBoards but I get this error:

10. Execute Modification ./Themes/default/BoardIndex.template.php Test failed
11. Execute Modification ./Themes/default/MessageIndex.template.php Test failed
12. Execute Modification ./Themes/default/index.template.php Test successful
13. Execute Modification ./Themes/classic/BoardIndex.template.php Test failed
14. Execute Modification ./Themes/classic/MessageIndex.template.php Test failed
15. Execute Modification ./Themes/classic/index.template.php Test successful
16. Execute Modification ./Themes/babylon/BoardIndex.template.php Test failed

I don't want to start all over again so I would appreciate your help. I have attached the two files in the hope that you can look at them.
Title: Re: ColorizeBoards
Post by: Bulakbol on August 01, 2008, 07:05:02 AM
@blouogies20
  Those are links. You can change the color of your members links by using this mod. Member Color Link (http://custom.simplemachines.org/mods/index.php?mod=111) or by changing color in your theme's style.css. Look for
a:link
{
color: #476C8E;
text-decoration: none;
}

and change the color.

@bran8464
Quote from: bran8464 on August 01, 2008, 06:11:01 AM
10. Execute Modification ./Themes/default/BoardIndex.template.php Test failed
11. Execute Modification ./Themes/default/MessageIndex.template.php Test failed
13. Execute Modification ./Themes/classic/BoardIndex.template.php Test failed
14. Execute Modification ./Themes/classic/MessageIndex.template.php Test failed
16. Execute Modification ./Themes/babylon/BoardIndex.template.php Test failed

Whoa!! Did you go ahead with the installation?  I'll see if I have remaining time today. If not, I'll give your files back tomorrow.
Title: Re: ColorizeBoards
Post by: blouogies20 on August 01, 2008, 07:24:04 AM
Johnny Thank you for the advice will try for sure!!!

Thank you for keeping on supporting you mod!!!!
Title: Re: ColorizeBoards
Post by: Bulakbol on August 01, 2008, 08:08:58 AM
@blouogies20
   You're welcome. Thank you too.

@bran8464
   Here are your files. Try them out. Attached.

Title: Re: ColorizeBoards
Post by: bran8464 on August 01, 2008, 11:30:58 AM
Many, many thanks. All is now fine.
Title: Re: ColorizeBoards
Post by: Tweet on September 06, 2008, 11:32:04 PM
Thank You for your wonderful, gracious contributions JohnyB!  ;D

This one, so far, is my favorite mod .. I LoVe colorful, hehe

Tweet
Title: Re: ColorizeBoards
Post by: Bulakbol on September 06, 2008, 11:41:25 PM
You are all welcome guys. I thank you too for using or trying this mod.  ;)
Title: Re: ColorizeBoards
Post by: awakencordy on September 15, 2008, 06:04:44 PM
hello, first of all, super mod, totally. if you need a turkish translation, just give me the english part you need, and i'll translate it.

I've read all thread, and with a little hope, I still want to ask..

I'm using multicolor (i know! woe.) yet, I want to hear officially if it's not possible. These are the parts i wish to colorise ;

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi33.tinypic.com%2F15odkba.jpg&hash=94a09998335e9148130686361ec68f7740aa8347)  <- the link part
+
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi38.tinypic.com%2F2llbwco.jpg&hash=6d7bcd280fb9dcd9efa671106aff0f7f855803b8) <- links again
+
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi33.tinypic.com%2F2gx42s3.jpg&hash=183cbe7891a83898d4e023c4db5e0596882c19a8) <- the tree

and just in case, i've attached my php's. I hope that there is a solution, and that this is not too much trouble.

Title: Re: ColorizeBoards
Post by: awakencordy on September 15, 2008, 06:08:01 PM
Turkish ;



<!-- default/Languages/Modifications.french.php -->
     <file name="$languagedir/Modifications.turkish.php">
         <operation>
             <search position="end"></search>
             <add><![CDATA[
$txt['colorize_color'] = 'Renk';
]]></add>
         </operation>
     </file>

Title: Re: ColorizeBoards
Post by: tk2012 on October 10, 2008, 11:48:51 AM
Hey Johny B!

I upgraded to b4.0 last night/this morning and am reinstalling mods.  I am getting two test failed notifications in the BoardIndex.template.php file.  The 3rd & 4th are the ones giving me the trouble.  I tried to manually edit that part, but can't find the strings to edit.

I used the ColorizeBoards2b4.zip file for the installation.
Title: Re: ColorizeBoards
Post by: Bulakbol on October 11, 2008, 03:08:43 AM
@awakencordy
If you are using the latest version, it should color the linktrees and board names in Recent posts.
Thanks for the translation. I will add them to the next update.

@tk2012
Attach your BoardIndex.template.php and I'll see what I can do.
Title: Re: ColorizeBoards
Post by: Sanity on October 11, 2008, 08:02:47 AM
Dose this support 1.1.6? as when i installed the mod i got this message.

"The package you are trying to download or install is either corrupt or not compatible with this version of SMF."
Title: Re: ColorizeBoards
Post by: Kermit on October 11, 2008, 08:07:16 AM
Quote from: Sanity on October 11, 2008, 08:02:47 AM
Dose this support 1.1.6? as when i installed the mod i got this message.

"The package you are trying to download or install is either corrupt or not compatible with this version of SMF."


yep, its compatible with 1.1.6

http://custom.simplemachines.org/mods/index.php?action=download;mod=1030;id=53361
Title: Re: ColorizeBoards
Post by: Sanity on October 11, 2008, 08:12:45 AM
So all i need to do is install this package and it will work? Am a complete new to all this, am just trying to learn the basics  :).
Title: Re: ColorizeBoards
Post by: Kermit on October 11, 2008, 08:13:49 AM
Quote from: Sanity on October 11, 2008, 08:12:45 AM
So all i need to do is install this package and it will work? Am a complete new to all this, am just trying to learn the basics  :).



yes , just need to be installed
Title: Re: ColorizeBoards
Post by: Bulakbol on October 14, 2008, 01:11:37 AM
@Sanity
Do you still need help? Are you still encountering download error?
If there's no error, then you have to edit your boards and enter the color you want to use.
Title: Re: ColorizeBoards
Post by: tk2012 on October 14, 2008, 10:06:42 PM
sorry it took so long...

I've had a lot of problems with b4.0.  I'm sure it's just me, but when I do searches in Notepad++, I can't seem to find some of the strings that need edited.



Title: Re: ColorizeBoards
Post by: tk2012 on October 15, 2008, 06:01:55 PM
When I try to get into the Admin > Forum > Boards page, I am ok, but as soon as I try to go into a board to modify it, the page goes WHITE.  This is the only mod that I have that does anything with the ManageBoards.template.php file.  I noticed this when I went to install the ImagesOnBoard mod.  I saw that the screen went blank.  The ManageBoards.template.php file failed the test, so I tried to edit it manually.  I noticed the white screen and figured I would uninstall.  I did this and uploaded the original ManageBoards.template.php file back to the server (which just had the Colorize Boards edits on it) and thought that would clear it.  it didn't so I'm assuming the Colorize Boards mod is the one at fault.

Either way, I had both of these installed on the 3.1 forum without any problems.  What should I do?  Wait til this one is working and then try to install the ImagesOnBoard again? 
Title: Re: ColorizeBoards
Post by: Bulakbol on October 16, 2008, 07:47:17 PM
@tk2012
Were there any errors when you installed this mod? Any error in the error log? Attach your Sources/ManageBoards.php and default/ManageBoards.template.php. I'll check them for errors.
Title: Re: ColorizeBoards
Post by: tk2012 on October 16, 2008, 08:30:56 PM
After doing the b4.0 upgrade and installing some mods, I only have ten errors in my log.

I'll attach the list here with those files.  (Ignore the fact the one has "MManage")

Title: Re: ColorizeBoards
Post by: Bulakbol on October 16, 2008, 09:11:14 PM
@tk2012
The mod was properly installed in you ManageBoards.template.php.. I need your Sources/MangeBoards.php.
Title: Re: ColorizeBoards
Post by: tk2012 on October 16, 2008, 10:42:46 PM
I'm not sure if it is just something that went wrong with the upgrade or not...

but, here's the file.
Title: Re: ColorizeBoards
Post by: Bulakbol on October 17, 2008, 12:00:29 AM
@tk2012
Nope. There's nothing wrong with your ManageBoards files.  Are you certain that this mod is the cause of your issue? What about the Sources/Load.php? Attach it. It might be there.
Title: Re: ColorizeBoards
Post by: tk2012 on October 17, 2008, 12:18:38 AM
I don't want to have you go thru all of that.  I installed ImagesOnBoard, Colorize Boards, and StarsAndBadges  at the same time.  I didn't have a problem until I installed the ImagesOnBoard, but then I uninstalled it and put the edits back to the original file and ... boom.. the other two don't work.

I'll probably have to re-upload all the files back to the original and do them all over again??

Title: Re: ColorizeBoards
Post by: Bulakbol on October 17, 2008, 12:24:44 AM
@tk2012
That's a good idea. Better than checking every file.
Title: Re: ColorizeBoards
Post by: dudedownunder on October 21, 2008, 10:55:15 AM
What am I looking for after installing this? I cant see anywhere to alter colours in the 'boards' menu? There are some blank white boxes under the 'fullname' and 'description'.?
Title: Re: ColorizeBoards
Post by: Bulakbol on October 22, 2008, 03:28:09 AM
@dudedownunder
I think the txt string is missing. In default/languages/Modifications.english.php, add the following line before the php closing tag.
$txt['colorize_color'] = 'Color';
If you are using utf8,  default/languages/Modifications.english-utf8.php file.
Title: Re: ColorizeBoards
Post by: simsek97 on October 26, 2008, 08:13:12 AM
Hi,,,

i have installed ColorizeBoards2b4.zip manually... my site works with no error but in admin area just Categories link give me a white page... no error, no page... i have checked files twice but i cannot solved...

i am uploading my files

please help me
Title: Re: ColorizeBoards
Post by: Bulakbol on October 28, 2008, 03:07:25 AM
@simsek97
Which theme are you using? I'll see what I can do. I'll get back to you.
Title: Re: ColorizeBoards
Post by: simsek97 on October 28, 2008, 06:37:01 AM
Quote from: JohnyB on October 28, 2008, 03:07:25 AM
@simsek97
Which theme are you using? I'll see what I can do. I'll get back to you.

Just default theme...
Title: Re: ColorizeBoards
Post by: lazanya on October 28, 2008, 11:56:33 AM
I have smf 2.4, utf9 Turkish database. When I tried to install it, error. JPG is below.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg139.imageshack.us%2Fimg139%2F9089%2Fscreenshot001re6.th.jpg&hash=ba44419319de8ae483e13b01068d49a4d57e87c9) (http://img139.imageshack.us/my.php?image=screenshot001re6.jpg)
Title: Re: ColorizeBoards
Post by: Bulakbol on October 29, 2008, 10:38:20 PM
@simsek97
Could you try to install the mod and let me know what files failed the installation test?

@lazanya
Attach your Sources/Recent.php file so I can edit it for you.
Title: Re: ColorizeBoards
Post by: lazanya on October 30, 2008, 12:59:57 AM
Quote from: JohnyB on October 29, 2008, 10:38:20 PM
@simsek97
Could you try to install the mod and let me know what files failed the installation test?

@lazanya
Attach your Sources/Recent.php file so I can edit it for you.

This is my recent.

http://uploaded.to/?id=4mjz8k
Title: Re: ColorizeBoards
Post by: Bulakbol on October 30, 2008, 01:56:19 AM
@lazanya
Here you go. Please go ahead with the installation ignoring the failed test and then use this file after. Don't forget to backup though.
Title: Re: ColorizeBoards
Post by: lazanya on October 30, 2008, 05:12:25 AM
Quote from: JohnyB on October 30, 2008, 01:56:19 AM
@lazanya
Here you go. Please go ahead with the installation ignoring the failed test and then use this file after. Don't forget to backup though.

if it is in the picture below, it is OK now. My forum is Turkish utf8, I can't see it in Turkish. I changed my language into English then I was able to see it. But no colours, so we put the colur codes into the box I think.

http://img530.imageshack.us/my.php?image=screenshot001zv5.jpg


After the message in red, I had time to try more. It is OK now, it works. My only problem is Turkish language. In fact it is not a big problem, because I can see the boxes for colour names even in Turkish. I can't see the Default face etc. It doesn't matter for me. Maybe wouldn't it be better if we can put colour codes like $004080FF. We can have more colour opportunites maybe.

Thanks it is OK now.

Here it is.
http://www.ingilizcesunu.com/index.php?action=forum
Title: Re: ColorizeBoards
Post by: simsek97 on October 30, 2008, 01:22:48 PM
Quote from: JohnyB on October 29, 2008, 10:38:20 PM
@simsek97
Could you try to install the mod and let me know what files failed the installation test?

@lazanya
Attach your Sources/Recent.php file so I can edit it for you.

i have installed manually before. now if i want to install again automatically, the error shown in the attachment appears...

i am using utf-8 turkish language...

i have a lot of problems because of this. please help me...
Title: Re: ColorizeBoards
Post by: lazanya on October 30, 2008, 01:53:30 PM
you and me have different installation types, I didn't have this kind of warning. I uploaded the files, installed them and after that
I uploaded the recent.php file sent by JohnyB. It was OK.
Title: Re: ColorizeBoards
Post by: Bulakbol on October 31, 2008, 10:55:21 PM
@lazanya
That's great! Enjoy.  :)

@simsek97
Download the package again and re-install.
Title: Re: ColorizeBoards
Post by: SISPro on November 17, 2008, 01:31:28 AM
lots of error on this and i am running the new beta 2.04b something like that here is a screenshot of it

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Ffreeimageforum.com%2Fhosting%2Fimages%2Fachlx3b1rgz7d1sc2f0_thumb.jpg&hash=ad2c652398bdce2b8695d818ea2193c636463bee) (http://freeimageforum.com/hosting/viewer.php?file=achlx3b1rgz7d1sc2f0.jpg)
Title: Re: ColorizeBoards
Post by: Bulakbol on November 28, 2008, 07:05:44 AM
@SISPro
I apologize for being late here. If you still need assistance, please attach your Sources/Recent.php
and the default/BoardIndex.template.php. Ignore the other files that failed the test if you are using the default theme.
Title: Re: ColorizeBoards
Post by: RoH on December 02, 2008, 07:06:19 AM
hey working great.. but somehow i don't see the TITLE Color ?

forum is http://hosting-offers.info

can you plz help

Title: Re: ColorizeBoards
Post by: Bulakbol on December 02, 2008, 06:39:00 PM
@RoH
Make sure the following are in your default/languages/Modifications.english.php. If you are not using English, then add them to your default/languages/Modification.{your_language}.php.

This is for SMF version 1.1.7

$txt['colorize_color'] = 'Color';
Title: Re: ColorizeBoards
Post by: RoH on December 03, 2008, 04:12:02 AM
its already there.. :(

I still remember seeing colored titles before applying the icon set MOD cbi 1.5

since then, i guess there is something in boardindex.template.php that i am not able to catch.

check this code

// If the board is new, show a strong indicator.
if ($board['new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png'))
$board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png';
else
$board_new_img=$settings['images_url']. '/on.png';

echo '<img src="', $board_new_img,'" alt="', $txt['no_icon'], '" title="', $txt['no_icon'], '" border="0" />';
} elseif ($board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png'))
$childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png';
else
$childboard_new_img=$settings['images_url']. '/on2.png';

echo '<img src="', $childboard_new_img,'" alt="', $txt['no_icon'], '" title="', $txt['no_icon'], '" border="0" />';
} else {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png'))
$board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png';
else
$board_nonew_img=$settings['images_url']. '/off.png';

echo '<img src="', $board_nonew_img,'" alt="', $txt['no_icon'], '" title="', $txt['no_icon'], '" border="0" />';
}
// Is it a redirection board?
if ($board['is_redirect'])
echo '<img src="', $settings['images_url'], '/redirect.png" alt="*" title="*" border="0" />';


echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b>';

if (!empty($board['description']))
echo '<br /><span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';


when i remove the cbi MOD, the title color displays as it shud.

So i guess there is something in that code that causing it NOT to work.

can you please take a look.

Thank you

~RoH
Title: Re: ColorizeBoards
Post by: RoH on December 03, 2008, 04:30:59 AM
:) I fixed it... wwoooo


Just this line in boardindex.template.php

</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b>';


should actually look like this

</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '" style="color: '. $board['bcolor']. ';">', $board['name'], '</a></b>';
Title: Re: ColorizeBoards
Post by: ibulseco on December 04, 2008, 08:31:40 AM
can someone help, how to incorporate this mod to my SMF Forum  :(
Title: Re: ColorizeBoards
Post by: Bulakbol on December 04, 2008, 07:34:44 PM
@RoH
haha glad you fixed it yourself.  It feels good when you fixed something that you thought you can't fix it.

@ibulseco
Download the mod from here (http://custom.simplemachines.org/mods/index.php?mod=1030) and upload it to your package folder via FTP. Then use the package manager to install it.
Admin => Packages => Browse Packages. Then click "Apply Mod" link. If there's problem, post it here.
Title: Fatal error
Post by: superlalynx on January 11, 2009, 10:58:42 PM
Hi,
I got this message after I ran the installation (All test were on green):
Quote
Fatal error: require() [function.require]: Failed opening required '/mnt/sites/huahinfrenchalliance.org/web/hhfaforum/Packages/temp/./ColorizeBoardsDB114.php' (include_path='.') in /mnt/sites/huahinfrenchalliance.org/web/hhfaforum/Sources/Packages.php on line 556
It said then, after reloading the page, that the installation went successful but in reality nothing appears when attempting to modify a section ...
Any idea?
Title: Re: ColorizeBoards
Post by: Bulakbol on January 12, 2009, 06:41:42 PM
Try uninstalling the mod, create a "temp" folder inside the packages folder and chmod to 777 or 655, then reinstall the mod.
Title: Re: ColorizeBoards
Post by: superlalynx on January 12, 2009, 10:03:01 PM
Quote from: Bulakbol on January 12, 2009, 06:41:42 PM
Try uninstalling the mod, create a "temp" folder inside the packages folder and chmod to 777 or 655, then reinstall the mod.

That way, it worked! Thank you.
Title: Re: ColorizeBoards
Post by: Whimsical on January 13, 2009, 08:52:57 PM
Very useful mod, and no probs with installation.

Thanks! :)
Title: Re: ColorizeBoards
Post by: Bulakbol on January 17, 2009, 03:40:30 PM
Thanks for the compliments.  8)
Title: Re: ColorizeBoards
Post by: adp on February 13, 2009, 09:31:47 AM
Work's on RC1?
Title: Re: ColorizeBoards
Post by: Bulakbol on February 17, 2009, 04:19:35 PM
Not too sure. I will update this mod soon. Sorry for the delay.
Title: Re: ColorizeBoards
Post by: Bulakbol on February 25, 2009, 09:57:43 PM
This mod is now updated for SMF 2.0 RC1 version. Thanks for waiting patiently.
Title: Re: ColorizeBoards
Post by: TDNY on March 03, 2009, 04:06:39 PM
Thanks for this mod Bulakbol, I'm using vers. 3.0 of yours that Duncan85 posted back on page 11. I'm using 1.1.8 with the default-core theme. uploaded it with package installer, installed it and changed the board colors in minutes. I am by no means familiar with computer workings, this was very easy to do thanks again.

TD
Title: Re: ColorizeBoards
Post by: edi67 on March 10, 2009, 06:46:08 AM
let me try thx bulak
Title: Re: ColorizeBoards
Post by: eddie8 on March 22, 2009, 01:32:33 PM
Hi very nice Mod!

works great just one color question
under boards, in admin

Description:
            A short description of your board.

When I set a color for that  it only changes the text color
in the admin WYSIWYG box only, not the description text in
the board itself.

Thanks
Ed
Title: Re: ColorizeBoards
Post by: Xavi-Nena on March 22, 2009, 11:12:19 PM
I see that I have uploaded the wrong package to my board, it was the one for version 2.0 however in my package manager it only shows list files and delete...i wanted to ask if it would be ok if i just hit delete and upload the correct one for my board or will i have to go in and manually remove code it might have installed?
Title: Re: ColorizeBoards
Post by: Bulakbol on March 28, 2009, 02:11:04 PM
@TDNY
You're welcome. Thanks too for using/trying this mod.

@eddie8
Try another browser. Try firefox or opera. Does the board description color show in the board index?

@NenaGb
I'm sorry but you have to uninstall the mod manually before you can install the new version.
Title: Re: ColorizeBoards
Post by: eddie8 on March 28, 2009, 03:56:58 PM
Great Mod JohnnyB!

Yes latest version of FF is my primary browser, also checked with IE

when I enter the color Blue for the forum description wording its is not
blue, instead the the admin area  description textarea box is blue

I know after installing a bunch of mods it could very well be the smallest
of things, but your Mod to me is so complex to figure out and I am new

I see you put a lot of work into that, your Mod brings a forum to life everything
else works fine for me, I have a lot of mods maybe some minor edit conflict or
something with one of them

again thanks for the great Mod

Ed
Title: compatible 1.1.8 ?
Post by: tsouliang on May 20, 2009, 09:52:19 AM
Hello :)

I try this mod whith my 1.1.8
and there is an error message :

Erreur lors de l'installation du paquet
Au moins une erreur a été rencontrée lors d'un test d'installation de ce paquet. Il est vivement recommandé que vous ne continuiez pas son installation à moins d'être sûr de ce que vous faites et que vous avez fait très récemment une copie de sauvegarde de votre forum et de votre base de données. Cette erreur peut être causée entre autre par un conflit avec le paquet que vous tentez d'installer et un autre paquet que vous avez précédemment installé, une erreur dans le paquet lui-même, un paquet qui requiert un autre paquet que vous n'avez pas encore installé, ou un paquet écrit pour une autre version de SMF.
Instructions d'installation
Author: JohnyB  Mod Name: ColorizeBoards  Version: 3.0
Tested: Freshly installed SMF 1.1.4 and SMF 2.0 Beta 3 Public
This will install ColorizeBoards 3.0 mod.
       
Colorize Boards 3.0
- As the name implies, this mod will optionally colorize your board name and board description.
- It will also optionally colorize category and list of Child boards in board index.
- Display colorized list of Child boards in board index.
- Display colorized boards in Stats page and Recent posts page.
- Colorized categories and boards will colorize linktree as well.
       
Usage:
- When modifying or creating a board, enter the desired color under the board's name and under the board's description.
- Do the same thing when modifying or creating a category.
- To use your original colors, leave the color input box blank.

Supported Themes
- Default Core
- Babylon
- Classic

Actions d'installation
Actions d'installation pour "Colorize Boards":
L'installation de ce paquet effectuera les actions suivantes :
   Type    Action    Description
1.    Exécuter le code    ColorizeBoardsDB114.php    
2.    Appliquer la modification    ./Sources/Load.php    Réussite du test
3.    Appliquer la modification    ./Sources/BoardIndex.php    Réussite du test
4.    Appliquer la modification    ./Sources/MessageIndex.php    Réussite du test
5.    Appliquer la modification    ./Sources/ManageBoards.php    Réussite du test
6.    Appliquer la modification    ./Sources/Recent.php    Réussite du test
7.    Appliquer la modification    ./Sources/Stats.php    Réussite du test
8.    Appliquer la modification    ./Sources/Subs-Boards.php    Réussite du test
9.    Appliquer la modification    ./Themes/default/ManageBoards.template.php    Réussite du test
10.    Appliquer la modification    ./Themes/default/BoardIndex.template.php    Réussite du test
11.    Appliquer la modification    ./Themes/default/MessageIndex.template.php    Réussite du test
12.    Appliquer la modification    ./Themes/default/index.template.php    Échec du test
13.    Appliquer la modification    ./Themes/classic/BoardIndex.template.php    Réussite du test
14.    Appliquer la modification    ./Themes/classic/MessageIndex.template.php    Réussite du test
15.    Appliquer la modification    ./Themes/classic/index.template.php    Réussite du test
16.    Appliquer la modification    ./Themes/babylon/BoardIndex.template.php    Réussite du test
17.    Appliquer la modification    ./Themes/babylon/MessageIndex.template.php    Réussite du test
18.    Appliquer la modification    ./Themes/babylon/index.template.php    Réussite du test
19.    Appliquer la modification    ./Themes/default/languages/Modifications.english.php    Réussite du test
20.    Appliquer la modification    ./Themes/default/languages/Modifications.german.php    Passer le fichier
21.    Appliquer la modification    ./Themes/default/languages/Modifications.italian.php    Passer le fichier
22.    Appliquer la modification    ./Themes/default/languages/Modifications.french.php    Réussite du test
23.    Appliquer la modification    ./Themes/default/languages/Modifications.dutch.php    Passer le fichier
24.    Appliquer la modification    ./Themes/default/languages/Modifications.romanian.php    Passer le fichier

So what for the compatibility ?
Sorry for my englih, i'm french ;)

Thanks
Title: Re: ColorizeBoards
Post by: Siirist on May 20, 2009, 01:56:07 PM
Hello,

I would really like to use this. The screenshots are awesome!
This is what I found :

Mod Name: ColorizeBoards
Created By: Bulakbol 
Type: New Feature 
First Created: December 13, 2007, 09:38:43 PM
Last Modified: February 25, 2009, 06:55:52 PM
Latest Version: 3.0
Compatible With: 1.1.7, 1.1.8, 2.0 Beta 3 Public, 2.0 Beta 4, 2.0 RC1
Total Downloads: 37890


I downloaded ColorizeBoards.zip and then used the package manager to upload from my computer to the forum and apply.


Installing this package will perform the following actions:  Type Action Description
1. Execute Code ColorizeBoardsDB114.php 
2. Execute Modification ./Sources/Load.php Test successful
3. Execute Modification ./Sources/BoardIndex.php Test successful
4. Execute Modification ./Sources/MessageIndex.php Test successful
5. Execute Modification ./Sources/ManageBoards.php Test successful

6. Execute Modification ./Sources/Recent.php Test failed

7. Execute Modification ./Sources/Stats.php Test successful
8. Execute Modification ./Sources/Subs-Boards.php Test successful
9. Execute Modification ./Themes/default/ManageBoards.template.php Test successful
10. Execute Modification ./Themes/default/BoardIndex.template.php Test successful
11. Execute Modification ./Themes/default/MessageIndex.template.php Test successful
12. Execute Modification ./Themes/default/index.template.php Test successful
13. Execute Modification ./Themes/classic/BoardIndex.template.php Test successful
14. Execute Modification ./Themes/classic/MessageIndex.template.php Test successful
15. Execute Modification ./Themes/classic/index.template.php Test successful
16. Execute Modification ./Themes/babylon/BoardIndex.template.php Test successful
17. Execute Modification ./Themes/babylon/MessageIndex.template.php Test successful
18. Execute Modification ./Themes/babylon/index.template.php Test successful
19. Execute Modification ./Themes/default/languages/Modifications.english.php Test successful

20. Execute Modification ./Themes/default/languages/Modifications.german.php Skipping file
21. Execute Modification ./Themes/default/languages/Modifications.italian.php Skipping file
22. Execute Modification ./Themes/default/languages/Modifications.french.php Skipping file
23. Execute Modification ./Themes/default/languages/Modifications.dutch.php Skipping file
24. Execute Modification ./Themes/default/languages/Modifications.romanian.php Skipping file

Manual Install Instructions for SMF - 1.1.8
An Error Has Occurred!
Sorry, but this modification does not appear to be compatible with the selected version.



I am using SMF ver 1.1.8  with the Core - Default theme and the following Mods


          Mod Name Version 
1. SMF 1.0.16 / 1.1.8 Update 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
2. eFloating Bar for Guest & Members 0.1   [ Uninstall ] [ List Files ] [ Delete ] 
3. Post Box Message 1.1   [ Uninstall ] [ List Files ] [ Delete ] 
4. Advanced Contact Form 1.1   [ Uninstall ] [ List Files ] [ Delete ] 
5. Welcome Topic Mod 2.0.2   [ Uninstall ] [ List Files ] [ Delete ] 
6. Admin Notepad 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
7. Member Awards 1.0.2   [ Uninstall ] [ List Files ] [ Delete ] 
8. Group on Registration 1.1.1   [ Uninstall ] [ List Files ] [ Delete ] 
9. SimplePortal 2.2.1   [ Uninstall ] [ List Files ] [ Delete ] 
10. Caps_Lock_Detection_on_Login 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
11. Admins Can Post As Alternative User 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
12. TextSizer 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
13. Force Reason for Deletion 1.0   [ Uninstall ] [ List Files ] [ Delete ] 
14. Anti Bot: Are You Human/Bot? 2.2   [ Uninstall ] [ List Files ] [ Delete ]


I have attached
.../Sources/Recent.php



Last post by Bulakbol  on this topic =
Re: ColorizeBoards
« Reply #262 on: March 28, 2009, 11:11:04 AM »

From Bulakbol's profile =
Last Active: Today at 04:03:54 AM
Local Time: May 20, 2009, 12:53:34 PM


Is there any support available on this mod???


Thank you in advance.

Be Well,

Cloud Walker
Title: Re: ColorizeBoards
Post by: Bulakbol on May 21, 2009, 02:09:41 PM
@eddie8
Sorry but I have no idea why it is giving you different color. Check your color spelling.

@tsouliang
Sorry. I don't understand french either. If you will translate the errors to english, maybe I could help.

@Cloud Walker
I can download your file now but SMF is having problem with file attachment so you have to wait until it is fixed. BTW, upload the php files, not rtf files.
Title: Re: ColorizeBoards
Post by: skyfie on May 25, 2009, 03:07:08 AM
Hi guys...I'm a total newbie to all of this. I understand ColorizeBoards is specifically made for a couple of boards, but I saw that some folks were able to use Colorize on some of the custom themes. Is there any way to  make this work in the LiteDream theme? Many thanks, K
Title: Re: ColorizeBoards
Post by: Bulakbol on May 26, 2009, 01:33:58 AM
@Cloud Walker
Sorry, busy in real life and can't login everyday to check. I have your file now though. I'll see what I can do.

@skyfie
Try to install the mod and let me know where you are having problem with.
Title: Re: ColorizeBoards
Post by: skyfie on May 26, 2009, 11:57:45 AM
Thank you :) I did get it installed, and the drop down menus to colorize do appear, but it's not applying the changes.
Title: Re: ColorizeBoards
Post by: Bulakbol on May 29, 2009, 03:08:00 AM
@Cloud Walker
It should use the color for the category name. Make sure that the color spelling is correct  :P


@skyfie
Click on the save button after selecting color. Can you post a link to your website?
Title: Re: ColorizeBoards
Post by: Bulakbol on May 31, 2009, 02:59:13 AM
Thank you too for trying/using this mod.
Title: Re: ColorizeBoards
Post by: lucifur on June 11, 2009, 01:14:13 PM
my forum error log this message:  :-[

8: Undefined index: board_color
file: /httpdocs/forum/Sources/Recent.php
line: 143
   
8: Undefined index: board_color
file: /httpdocs/forum/Sources/Recent.php
line: 144

Title: Re: ColorizeBoards
Post by: Lighting_site on June 11, 2009, 04:00:44 PM
is it work under 1.1.9?
Title: Re: ColorizeBoards
Post by: Bulakbol on June 12, 2009, 12:56:56 AM
@lucifur
You installed another mod that altered the query that's why the field was not loaded. Try the attached Recent.php. Let me know how things goes.

@Lighting_site
If you installed the mod without error, then it should work.
Title: Re: ColorizeBoards
Post by: Dudecci on July 10, 2009, 04:12:53 AM
Bump for this great topic!

Anyways, I'm using this theme called Siyah Inci on 1.1.9 and managed to install this mod succesfully. Now I need some help to edit the BoardIndex file so the colors show up. Here is the index.

Thanks
Title: Re: ColorizeBoards
Post by: Bulakbol on July 11, 2009, 12:16:17 AM
I'll look at it when I have spare time today.I'll get back to you.
Title: Re: ColorizeBoards
Post by: Bulakbol on July 14, 2009, 12:01:48 AM
@Dudecci
I looked at your BoardIndex.template.php and there are only three lines to change. You can do the edit by yourself. siya_inci/BoardIndex.template.php
Code (find) Select
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];

Code (replace) Select
<b><a href="', $board['href'], '" name="b', $board['id'], '" style="color: '. $board['bcolor']. ';">', $board['name'], '</a></b>';
if (!empty($board['description']))
echo '<br /><span style="color: ', $board['dcolor'], ';">', $board['description'], '</span>';


Code (find) Select
<td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
Code (replace) Select
<td class="windowbg" valign="middle" align="center" style="width: 12ex; color: '. $board['bcolor']. ';"><span class="smalltext">

Code (find) Select
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
Code (replace) Select
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')" style="color: '. $child['bcolor']. ';">' . $child['name'] . '</a>';
Title: Re: ColorizeBoards
Post by: Dudecci on July 16, 2009, 02:05:28 PM
Works perfectly, thanks!
Title: Re: ColorizeBoards
Post by: Bulakbol on July 18, 2009, 11:00:15 PM
Quote from: Dudecci on July 16, 2009, 02:05:28 PM
Works perfectly, thanks!
You're welcome. Thanks too for using/testing this mod.
Title: Re: ColorizeBoards
Post by: FrelonVert on September 15, 2009, 04:01:38 PM
Great mod ! Can you update it for 2RC1.2 ? Don't work on it  :'(

Thanks
Title: Re: ColorizeBoards
Post by: gbsothere on September 15, 2009, 04:20:15 PM
The parsing instructions do appear for RC1.2, if you want to try it manually, or, if using the package manager, try going to Admin-----> Packages and near the bottom right corner, click Advanced and make that Emulate for:  SMF 2.0 RC1.  That might work.

:)


ETA:  You'd probably want to change that back, later, though.
Title: Re: ColorizeBoards
Post by: C4G-TK on December 13, 2009, 10:08:09 PM
This should be made standard into SMF!
Title: Re: ColorizeBoards
Post by: YogiBear on January 12, 2010, 11:12:23 AM
Hi Bulakbol,

Will there be a v2.0 RC2 version to work on the Curve theme?

C4G-TK - I agree.
Title: Re: ColorizeBoards
Post by: Joker™ on January 14, 2010, 05:07:42 AM
Any update on it for RC2 .... its a g8 mod n looking forward to it ..... plz upgrade it for RC2
Title: Re: ColorizeBoards
Post by: XtcruleZ on January 18, 2010, 12:17:17 AM
Quote from: sid2varun on January 14, 2010, 05:07:42 AM
Any update on it for RC2 .... its a g8 mod n looking forward to it ..... plz upgrade it for RC2

I would like it also.This would be very useful to me.
Title: Re: ColorizeBoards
Post by: TheListener on January 20, 2010, 01:27:02 AM
The mod does work on 2.0 RC2 it just requires a lot of manual edits.

(Which I have yet to try).
Title: Re: ColorizeBoards
Post by: YogiBear on January 20, 2010, 05:26:58 AM
Quote... it just requires a lot of manual edits. ...

Oh dread!  :(   Put it this way - if the mod can be updated so as to work on RC2 Curve I promise not to steal anyone's pic-a-nic basket for a week...  ::)
Title: Re: ColorizeBoards
Post by: TheListener on January 20, 2010, 04:22:43 PM
Quote from: YogiBear on January 20, 2010, 05:26:58 AM
Quote... it just requires a lot of manual edits. ...

Oh dread!  :(   Put it this way - if the mod can be updated so as to work on RC2 Curve I promise not to steal anyone's pic-a-nic basket for a week...  ::)
Quote from: YogiBear on January 20, 2010, 05:26:58 AM
Quote... it just requires a lot of manual edits. ...

Oh dread!  :(   Put it this way - if the mod can be updated so as to work on RC2 Curve I promise not to steal anyone's pic-a-nic basket for a week...  ::)

Oh boy.

Ya no average bear are ya Yogi!!

Title: Re: ColorizeBoards
Post by: XtcruleZ on January 20, 2010, 05:08:15 PM
Could someone please post the edits required to make this compatible with RC2?
Title: Re: ColorizeBoards
Post by: YogiBear on February 08, 2010, 03:13:54 PM
Er, any news on RC2?
Title: Re: ColorizeBoards
Post by: [-Trogan-] on February 08, 2010, 05:16:24 PM
(has nothing to do with the topic at hand::: Warning)

LOL every time i read your text I can hear Johnny Bravo in my head.
Title: Re: ColorizeBoards
Post by: YogiBear on February 08, 2010, 05:51:06 PM
I'll ask if I can have a musical avatar...  ::)
Title: Re: ColorizeBoards
Post by: [-Trogan-] on February 11, 2010, 08:32:16 AM
Quote from: YogiBear on February 08, 2010, 05:51:06 PM
I'll ask if I can have a musical avatar...  ::)
srry not yours.

i ment the maker of the mods.
Title: Re: ColorizeBoards
Post by: Mick. on February 26, 2010, 04:43:14 PM
i'll try to convert this to rc2.     ;)
Title: Re: ColorizeBoards
Post by: rd on February 26, 2010, 11:28:05 PM
This could be useful ;) Great mod.
Title: Re: ColorizeBoards
Post by: Mick. on February 26, 2010, 11:30:51 PM
Quote from: Royalduke on February 26, 2010, 11:28:05 PM
This could be useful ;) Great mod.

its converted already and what a pain in the neck it was..... just having an issue in creating the database. 
hopefully is done by tomorrow.
Title: Re: ColorizeBoards
Post by: TheListener on February 26, 2010, 11:33:12 PM
 :-[

Should I be feeling guilty here?

Are you ready for more suggestions BD?  Or should I  :-X
Title: Re: ColorizeBoards
Post by: Mick. on February 26, 2010, 11:34:54 PM
Quote from: Brack1 on February 26, 2010, 11:33:12 PM
:-[

Should I be feeling guilty here?

Are you ready for more suggestions BD?  Or should I  :-X

lol.....no guilts man.

sure, shoot me a pm.
Title: Re: ColorizeBoards
Post by: TheListener on February 26, 2010, 11:36:07 PM
You may regret saying that lol
Title: Re: ColorizeBoards
Post by: YogiBear on February 27, 2010, 05:13:05 AM
Hey BlueDevil,

If this works with RC2 Curve theme I'll share my pic-a-nic basket.  :)
Title: Re: ColorizeBoards
Post by: Buta on March 23, 2010, 04:22:28 PM
Hello all

I have a problem with this mode on 2.0 RC 1.2
I'm install manualy
My category's are OK colored, but child board and description are not OK. Also linktree is not OK

Please help me about this problem

Title: Re: ColorizeBoards
Post by: Siirist on March 31, 2010, 11:34:53 AM
Hi bluedevil,


We used this in our SMF 2.0 RC1 forum for over a year, and it is AWESOME!!!!  ;D


When we upgraded from SMF 2.0 RC1 > SMF 2.0 RC3 we lost it.  :'(

Any chance of getting a ver upgrade of this to SMF 2.0 RC2 or SMF 2.0 RC3 (we have found that MOST (but not all) RC2 will install on RC3.  ;)

Or shall we do a manual and hope for the best.  :-\

Thanks in advance.  :)

Be Well,
Cloud  8)
Title: Re: ColorizeBoards
Post by: YogiBear on April 07, 2010, 10:23:56 AM
If this could work on RC3 Curve theme I'll share two pic-a-nic baskets.
Title: Re: ColorizeBoards
Post by: Siirist on April 07, 2010, 06:28:34 PM
Hello,

This is a complex mod.  We were able to "force" it in guessing where to put code because the files we have are different for dome reason so when it said find "123456789" and replace with "987654321"

we would search and not find it.
But if we set search to "123" we found it and looking over our file, we would find "123rctheuk45789".
So we put in the replace like this "987654" and with "rctheuk" in the middle and then put the "321".
The end result was "987654rctheuk321".

Now our boards are colored, but because we have changed the theme, it is difficult to read some of the titles of the boards.

Because we forced it, there are no controls in the Admin Ctrl Pnl.  So we, can't get  it out now.  :'(

We will just have to wait.

Use caution.

Take Care,
Cloud 8)
Title: Re: ColorizeBoards
Post by: Javeed on June 07, 2010, 03:23:11 PM
I wish This mod upgrade :( n i get back :((. this is awwsome mod to make colorize our boards,

is there any one got idea for this mod for RC3?

help will be appreciate ..
Title: Re: ColorizeBoards
Post by: YogiBear on June 29, 2010, 07:13:36 PM
If updating this is a problem for RC3 would colorize categories be possible? I'm a fan of the RC3 Curve Theme but could do with that extra zing for the categories.
Title: Re: ColorizeBoards
Post by: hcfwesker on August 16, 2010, 07:49:53 PM
I'm on SMf 1.1.11

Ok, not sure if there's still support on this.  but I really need this MOd.  I installed it, with no erros, the option appear in the Board Modify board, but no colors show anywhere on the forum after changing them.

any suggestions?
  :(


Edit, I got the above to work.  Now, getting onto my other theme.  The problem is, none of the 3 themes in the package parser come close to matching the BoardIndex.template.php  on my custom theme.   If anyone can help steer me in the right direction, I'm attaching that file here.



Title: Re: ColorizeBoards
Post by: YogiBear on October 11, 2010, 06:06:23 PM
Here's the workaround and huge thanks to go gbsothere for the inspiration...

In the Modify Categories or Modify Boards section place this code... <font color=whatever> Board Name </font>

For Child Boards install the Rename Child Board mod then under Current Theme add the same code around the alternative name for the Child Boards - or keep it the same name for that matter. The only thing is all Child Board titles will have one colour.

So simple even Bear here could do it.  :)

Edit : this can also be used for Board Descriptions and a whole line of text can be coded so each word has a different colour!  :D


Title: Re: ColorizeBoards
Post by: turtleautos on November 28, 2010, 12:47:36 PM
brill yogi your a star works a treat aaaaaaaaaaaaa++++++++++++++++++++++
Title: Re: ColorizeBoards
Post by: YogiBear on November 28, 2010, 01:26:18 PM
It was gbsothere who told me about this, turtleautos. Hey, glad to hear it you like it.  :)

Title: Re: ColorizeBoards
Post by: anakmacan on June 10, 2011, 08:23:08 PM
Update to RC5 pls..
Title: Re: ColorizeBoards
Post by: YogiBear on June 11, 2011, 05:54:03 AM
http://www.simplemachines.org/community/index.php?topic=211909.msg2815425#msg2815425

:)
Title: Re: ColorizeBoards
Post by: LindaHT on August 12, 2012, 11:27:21 AM
Do u have to manually install, or will it auto install through package manager.  I am sorry we are new at this and are trying to set up SMF forum for PSP.  We need one that will auto set up, we do not know css.

Many thanks
Linda
Title: Re: ColorizeBoards
Post by: hcfwesker on August 12, 2012, 12:46:37 PM
Quote from: LindaHT on August 12, 2012, 11:27:21 AM
Do u have to manually install, or will it auto install through package manager.  I am sorry we are new at this and are trying to set up SMF forum for PSP.  We need one that will auto set up, we do not know css.

Many thanks
Linda

This mod is outdated, you want to use this one  http://www.simplemachines.org/community/index.php?topic=451264.0

And, yes, upload and install through package manager.  You'll only have to do manual installs if there are errors during the package installation
Title: Re: ColorizeBoards
Post by: lakestclair on December 14, 2014, 11:25:25 AM
Quote from: hcfwesker on August 12, 2012, 12:46:37 PM
Quote from: LindaHT on August 12, 2012, 11:27:21 AM
Do u have to manually install, or will it auto install through package manager.  I am sorry we are new at this and are trying to set up SMF forum for PSP.  We need one that will auto set up, we do not know css.

Many thanks
Linda

This mod is outdated, you want to use this one  http://www.simplemachines.org/community/index.php?topic=451264.0

And, yes, upload and install through package manager.  You'll only have to do manual installs if there are errors during the package installation

Any way to get this mod or the one you linked?  The linked mod is no longer available I had this mod in SMF 1.1.?? and have since updated my forum to 2.0.9 and now I've lost this mod and really liked it to distinguish between certain parts of the board.  Can't seem to find anyway to change board colors without this mod and my code ability isn't as good as some.
Title: Re: ColorizeBoards
Post by: hcfwesker on December 14, 2014, 02:36:49 PM
Quote from: lakestclair on December 14, 2014, 11:25:25 AMCan't seem to find anyway to change board colors without this mod and my code ability isn't as good as some.

http://www.simplemachines.org/community/index.php?topic=211909.msg2815425#msg2815425

All you had to do was just scroll up a few posts :P
Title: Re: ColorizeBoards
Post by: lakestclair on December 14, 2014, 05:54:11 PM
Quote from: hcfwesker on December 14, 2014, 02:36:49 PM
Quote from: lakestclair on December 14, 2014, 11:25:25 AMCan't seem to find anyway to change board colors without this mod and my code ability isn't as good as some.

http://www.simplemachines.org/community/index.php?topic=211909.msg2815425#msg2815425

All you had to do was just scroll up a few posts :P

Thanks I must've browsed right past it.  Works perfectly!