basilrath
05-03-2006, 01:37 PM
i need to replace this
$thread['hiddencount']++;
}
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
with this
$thread['hiddencount']++;
}
//############################Gallery-Modification###########################
if ($gallery == true)
{
eval('$threadbit .= "' . fetch_template('gallery_threadbit') . '";');
}
else
{
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
//############################End Gallery-Modification########################
}
for the gallery etc
but it obviously dosnt look like that on the php file as in the layout , can you just delete the original and replace with the other ie copy n paste etc
or do you have to put it in a certain way
sorry just new to this
$thread['hiddencount']++;
}
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
with this
$thread['hiddencount']++;
}
//############################Gallery-Modification###########################
if ($gallery == true)
{
eval('$threadbit .= "' . fetch_template('gallery_threadbit') . '";');
}
else
{
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
//############################End Gallery-Modification########################
}
for the gallery etc
but it obviously dosnt look like that on the php file as in the layout , can you just delete the original and replace with the other ie copy n paste etc
or do you have to put it in a certain way
sorry just new to this