i need to replace this
PHP Code:
$thread['hiddencount']++;
}
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
with this
PHP Code:
$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