Anyone can help me with this?
How can I delete the sort order cell that says "Title + - File name + - ..." that appears when I view an album?
Thanks!
Yea, I don't those on my album pages eithers.
Here is an edited version of the $template_thumb_view_title_row parameter. Just paste this into your theme.php and if it's already there then overwrite it with this one.
// HTML template for title row of the thumbnail view (album title + sort options)
$template_thumb_view_title_row = <<<EOT
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" class="statlink"><h2>{ALBUM_NAME}</h2></td>
<td><img src="images/spacer.gif" width="1" alt="" /></td>
</tr>
</table>
EOT;
There is a load of similar threads to yours, e.g. http://forum.coppermine-gallery.net/index.php/topic,51142.0.html or http://forum.coppermine-gallery.net/index.php/topic,48218.0.html
In the future, please search before asking.