Hi! I would like to get rid of the text showing the number of files on my main page, exemple:
"22 files, last one added on Sep 15, 2006"
How can I do that? I remove the function in my config panel but it doesn't work.
Please let me know.
Thanks
Search (http://forum.coppermine-gallery.net/index.php?action=search2;search=remove%20stats)
All the answers are related to that theme.php from the sample theme wich I don't have in my themes folder.
Here is my theme.php:
<?php
/*************************
Coppermine Photo Gallery
************************
Copyright (c) 2003-2006 Coppermine Dev Team
v1.1 originally written by Gregory DEMAR
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
********************************************
Coppermine version: 1.4.8
$Source$
$Revision: 3116 $
$Author: gaugau $
$Date: 2006-06-08 00:11:54 +0200 (Do, 08 Jun 2006) $
********************************************
This theme has had redundant CORE items removed
**********************************************/
// HTML template for template sys_menu spacer
$template_sys_menu_spacer ='|';
// HTML template for template sub_menu
$template_sub_menu = <<<EOT
<table cellpadding="0" cellspacing="0" border="0" class="top_menu_bttn">
<tr>
<td><img src="themes/eyeball/images/top_menu_left.gif" border="0" alt="" /><br /></td>
<!-- BEGIN custom_link -->
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{CUSTOM_LNK_TGT}" title="{CUSTOM_LNK_TITLE}">{CUSTOM_LNK_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<!-- END custom_link -->
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="index.php" onmouseover="MM_showHideLayers('Menu1','','show')"><img src="themes/eyeball/images/home.gif" border="0" alt="" /><br /></a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{ALB_LIST_TGT}" title="{ALB_LIST_TITLE}">{ALB_LIST_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{LASTUP_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{LASTUP_LNK}">{LASTUP_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{LASTCOM_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{LASTCOM_LNK}">{LASTCOM_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{TOPN_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{TOPN_LNK}">{TOPN_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{TOPRATED_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{TOPRATED_LNK}">{TOPRATED_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{FAV_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{FAV_LNK}">{FAV_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_spacer.gif" border="0" alt="" /><br /></td>
<td style="background-image:url(themes/eyeball/images/top_menu_button.gif);">
<a href="{SEARCH_TGT}" onmouseover="MM_showHideLayers('Menu1','','hide')" title="{SEARCH_LNK}">{SEARCH_LNK}</a>
</td>
<td><img src="themes/eyeball/images/top_menu_right.gif" border="0" alt="" /><br /></td>
</tr>
</table>
EOT;
// HTML template for title row of the thumbnail view (album title + sort options)
$template_thumb_view_title_row = <<<EOT
EOT;
// Function to start a 'standard' table
function starttable($width = '-1', $title = '', $title_colspan = '1')
{
global $CONFIG;
global $table_need_close;
if ($width == '-1') $width = $CONFIG['picture_table_width'];
if ($width == '100%') $width = $CONFIG['main_table_width'];
if ($title) {
$table_need_close = true;
echo <<<EOT
<!-- Start standard table title -->
<table align="center" width="$width" cellspacing="0" cellpadding="0" class="maintablea">
</table>
<!-- Start standard table -->
<table align="center" width="$width" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/spacer.gif" width="20" height="1" border="0" alt="" /></td>
<td width="100%"><table width="100%" cellspacing="1" cellpadding="0" class="maintableb">
EOT;
} else {
echo <<<EOT
<!-- Start standard table -->
<table align="center" width="$width" cellspacing="0" cellpadding="0" class="maintable">
EOT;
}
}
function endtable()
{
global $table_need_close;
if ($table_need_close) {
$table_need_close = false;
echo <<<EOT
</table>
</td>
<td><img src="images/spacer.gif" width="20" height="1" border="0" alt="" /></td>
</tr>
</table>
<!-- End standard table -->
<!-- BEGIN footer -->
<!-- END footer -->
EOT;
} else {
echo <<<EOT
</table>
<!-- End standard table -->
EOT;
}
}
function theme_display_image($nav_menu, $picture, $film_strip)
{
global $CONFIG;
$spacer = <<<EOT
EOT;
echo ' <img src="images/spacer.gif" width="1" height="25" alt="" /><br />' . "\n";
starttable();
echo $nav_menu;
endtable();
starttable();
echo $picture;
endtable();
if ($CONFIG['display_film_strip'] == 1) {
echo $film_strip;
}
if ($votes) {
starttable();
echo $spacer;
endtable();
echo $votes;
}
$picinfo = isset($_COOKIE['picinfo']) ? $_COOKIE['picinfo'] : ($CONFIG['display_pic_info'] ? 'block' : 'none');
echo "<div id=\"picinfo\" style=\"display: $picinfo;\">\n";
starttable();
echo $spacer;
endtable();
starttable();
echo $pic_info;
endtable();
echo "</div>\n";
if ($comments) {
starttable();
echo $spacer;
endtable();
echo "<div id=\"comments\">\n";
echo $comments;
echo "</div>\n";
}
}
?>
I would like to remove the date, last updated and number of files + the 29 files in 20 albums and 5 categories with 0 comments viewed 6 times in the footer.
Thanks
The sample theme is a part of Coppermine. If you don't have it for some reason then dowload the package and get if from there. Don't spam the forum with code.
Are you always so friendly with your answers? I noticed a rude ton everytimes someone ask a question. I mean we are just asking for information/help...it's the purpose of this forum right?
Are you trying to start a meta discussion about support forums, board rules (http://forum.coppermine-gallery.net/index.php?topic=22469.0) and free support? I'm not ready to do this, it will only lead to frustration. Search the board for previous discussions if you want to find out.
Did downloading a vanilla copy of coppermine solve your issue, i.e. did the fresh copy contain the sample theme?