check your edits carefully and the correct edits a few posts above would be my only suggestion. It does work correctly.Smog wrote:.... your MOD is working fine with exception of the index: normal colors.
Any idea when this will be added/fixed?
check your edits carefully and the correct edits a few posts above would be my only suggestion. It does work correctly.Smog wrote:.... your MOD is working fine with exception of the index: normal colors.
Any idea when this will be added/fixed?
Accomplished the modifications as suggested by you, still no colored forum titles on the index.oddfish wrote:check your edits carefully and the correct edits a few posts above would be my only suggestion. It does work correctly.Smog wrote:.... your MOD is working fine with exception of the index: normal colors.
Any idea when this will be added/fixed?
No, i didn't because i only use subsilver2danny1969 wrote:have you made the prosilver changes?
prosilver.xml
From memory, there are 2 more required edits in forumlist_body.html which I'll fix in an update soon for subsilver2.Smog wrote:No, i didn't because i only use subsilver2danny1969 wrote:have you made the prosilver changes?
prosilver.xml
Code: Select all
<a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
Code: Select all
<a class="forumlink" href="{forumrow.U_VIEWFORUM}"><!-- IF forumrow.S_FORUM_NAME_COLOUR --><span style="color:#{forumrow.FORUM_NAME_COLOUR};"><!-- ENDIF -->{forumrow.FORUM_NAME}<!-- IF forumrow.S_FORUM_NAME_COLOUR --></span><!-- ENDIF --></a>
Code: Select all
ALTER TABLE phpbb_forums ADD forum_name_colour varchar(6) DEFAULT '' NOT NULL;
PunkoJotaViL wrote:mmmm...
how i unistall this part:Code: Select all
ALTER TABLE phpbb_forums ADD forum_name_colour varchar(6) DEFAULT '' NOT NULL;
Txs oddfish, worked partial. Please see my PM.oddfish wrote:From memory, there are 2 more required edits in forumlist_body.html which I'll fix in an update soon for subsilver2.Smog wrote:No, i didn't because i only use subsilver2danny1969 wrote:have you made the prosilver changes?
prosilver.xml
find x2replace withCode: Select all
<a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
cheers,Code: Select all
<a class="forumlink" href="{forumrow.U_VIEWFORUM}"><!-- IF forumrow.S_FORUM_NAME_COLOUR --><span style="color:#{forumrow.FORUM_NAME_COLOUR};"><!-- ENDIF -->{forumrow.FORUM_NAME}<!-- IF forumrow.S_FORUM_NAME_COLOUR --></span><!-- ENDIF --></a>
oddfish.
Code: Select all
Parse error: syntax error, unexpected T_DOUBLE_ARROW in /homepages/7/d256403619/htdocs/forum/includes/functions_display.php on line 998
check your edits in functions_display.php around that line #. It should look something like this ( :platinum_2007 wrote:I am getting this error :
Code: Select all
Parse error: syntax error, unexpected T_DOUBLE_ARROW in /homepages/7/d256403619/htdocs/forum/includes/functions_display.php on line 998
Code: Select all
if (!empty($active_f_row))
{
$sql = 'SELECT forum_name
FROM ' . FORUMS_TABLE . '
WHERE forum_id = ' . $active_f_row['forum_id'];
//-- mod : forum title colour --------------------------------------------------
//-- add
$sql = str_replace('SELECT ', 'SELECT forum_name_colour, ', $sql);
//-- fin mod : forum title colour ----------------------------------------------
$result = $db->sql_query($sql, 3600);
$active_f_row['forum_name'] = (string) $db->sql_fetchfield('forum_name');
//-- mod : forum title colour --------------------------------------------------
//-- add
$active_f_row['forum_name_colour'] = $db->sql_fetchfield('forum_name_colour');
//-- fin mod : forum title colour ----------------------------------------------
$db->sql_freeresult($result);
}
// Obtain active topic
Any progress to report?oddfish wrote:Might include Category Title Colour one day too.
not in the immediate future.Smog wrote:Any progress to report?oddfish wrote:Might include Category Title Colour one day too.