Disable album info Disable album info
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Disable album info

Started by m8internet, April 04, 2011, 09:28:04 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

m8internet

I have been looking around the Config menu, but cannot find an option

I would appreciate advise on how to disable the Album Info

http://www.rail-britain.co.uk/gallery/
"20 files, last one added on Apr 04, 2011 Album viewed 0 times" -> THIS text

If amending of code is required, if the thumbnail remains aligned to the left, how can this be aligned to the center?
For this additional amendment, it will be enough to point me to the file name and line affected

Any and all assistance welcome

Αndré

Please search the board before starting new threads. Your question is very similar to that topic.

Have a look at the code in that thread. It should be obvious that you also have to empty the second row (album_info).

m8internet

Thank you for correcting what I had already found and now applied

As above, this leaves the images out of alignment, hence why I replaced the original index.php file
Please advise as how to center the text and thumbnail

Αndré

Can you please post a small screen-shot where you clarify what exactly you want to achieve? Thanks.

m8internet

As per your request, here is the screenshot
As you can see the text and images along the top are aligned to the left (incorrectly)
The images and text below this are aligned to the center (correctly) and how I would like the text and images above to appear


Αndré

Copy the following code to your theme's theme.php file:
/******************************************************************************
** Section <<<$template_album_list>>> - START
******************************************************************************/
// HTML template for the album list
$template_album_list = <<<EOT

<!-- BEGIN stat_row -->
       <tr>
               <td colspan="{COLUMNS}" class="tableh1" align="center"><span class="statlink">{STATISTICS}</span></td>
       </tr>
<!-- END stat_row -->
<!-- BEGIN header -->
       <tr class="tableb tableb_alternate">
<!-- END header -->
<!-- BEGIN album_cell -->
       <td width="{COL_WIDTH}%" valign="top">
       <table width="100%" cellspacing="0" cellpadding="0">
       <tr>
               <td colspan="3" height="1" align="center" valign="top" class="tableh2">
                       <span class="alblink"><a href="{ALB_LINK_TGT}">{ALBUM_TITLE}</a></span>
               </td>
       </tr>
       <tr>
               <td colspan="3">
                       <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
               </td>
       </tr>
       <tr>
               <td align="center" valign="middle" class="thumbnails">
                       <img src="images/spacer.gif" width="{THUMB_CELL_WIDTH}" height="1" style="margin-top: 0px; margin-bottom: 0px; border: none;" alt="" /><br />
                       <a href="{ALB_LINK_TGT}" class="albums">{ALB_LINK_PIC}<br /></a>
                       <p>{ALB_DESC}</p>
                       {ADMIN_MENU}
               </td>
       </tr>
       </table>
       </td>
<!-- END album_cell -->
<!-- BEGIN empty_cell -->
       <td width="{COL_WIDTH}%" valign="top">
       <table width="100%" cellspacing="0" cellpadding="0">
       <tr>
               <td height="1" valign="top" class="tableh2">
                       &nbsp;
               </td>
       </tr>
       <tr>
               <td>
                       <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
               </td>
       </tr>
       <tr>
               <td width="100%" valign="top" class="tableb tableb_alternate">
                   <div class="thumbnails" style="background-color:transparent"><img src="images/spacer.gif" width="1" height="1" border="0" class="image" style="border:0;margin-top:1px;margin-bottom:0" alt="" /></div>
               </td>
       </tr>
       </table>
       </td>
<!-- END empty_cell -->
<!-- BEGIN row_separator -->
       </tr>
       <tr class="tableb tableb_alternate">
<!-- END row_separator -->
<!-- BEGIN footer -->
       </tr>
<!-- END footer -->
<!-- BEGIN tabs -->
       <tr>
               <td colspan="{COLUMNS}" style="padding: 0px;">
                       <table width="100%" cellspacing="0" cellpadding="0">
                               <tr>
                                      {TABS}
                               </tr>
                       </table>
               </td>
       </tr>
<!-- END tabs -->
<!-- BEGIN spacer -->
       <img src="images/spacer.gif" width="1" height="7" border="" alt="" /><br />
<!-- END spacer -->

EOT;
/******************************************************************************
** Section <<<$template_album_list>>> - END
******************************************************************************/


/******************************************************************************
** Section <<<$template_album_list_cat>>> - START
******************************************************************************/
// HTML template for the album list
$template_album_list_cat = <<<EOT

<!-- BEGIN c_stat_row -->
       <tr>
               <td colspan="{COLUMNS}" class="tableh1" align="center"><span class="statlink">{STATISTICS}</span></td>
       </tr>
<!-- END c_stat_row -->
<!-- BEGIN c_header -->
       <tr class="tableb tableb_alternate">
<!-- END c_header -->
<!-- BEGIN c_album_cell -->
       <td width="{COL_WIDTH}%" valign="top">
       <table width="100%" cellspacing="0" cellpadding="0">
       <tr>
               <td colspan="3" height="1" align="center" valign="top" class="tableh2">
                       <span class="alblink"><a href="{ALB_LINK_TGT}">{ALBUM_TITLE}</a></span>
               </td>
       </tr>
       <tr>
               <td colspan="3">
                       <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
               </td>
       </tr>
       <tr>
               <td align="center" valign="middle" class="thumbnails">
                       <img src="images/spacer.gif" width="{THUMB_CELL_WIDTH}" height="1" style="margin-top: 0px; margin-bottom: 0px; border: none;" alt="" /><br />
                       <a href="{ALB_LINK_TGT}" class="albums">{ALB_LINK_PIC}<br /></a>
                       <p>{ALB_DESC}</p>
                       {ADMIN_MENU}
               </td>
       </tr>
       </table>
       </td>
<!-- END c_album_cell -->
<!-- BEGIN c_empty_cell -->
       <td width="{COL_WIDTH}%" valign="top">
       <table width="100%" cellspacing="0" cellpadding="0" >
       <tr>
               <td height="1" valign="top" class="tableh2">
                       &nbsp;
               </td>
       </tr>
       <tr>
               <td>
                       <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
               </td>
       </tr>
       <tr>
               <td width="100%" valign="top" class="tableb tableb_alternate" >
                     <div class="thumbnails" style="background-color:transparent"><img src="images/spacer.gif" width="1" height="1" border="0" class="image" style="border:0;margin-top:1px;margin-bottom:0" alt="" /></div>
               </td>
       </tr>
       </table>
       </td>
<!-- END c_empty_cell -->
<!-- BEGIN c_row_separator -->
       </tr>
       <tr class="tableb tableb_alternate">
<!-- END c_row_separator -->
<!-- BEGIN c_footer -->
       </tr>
<!-- END c_footer -->
<!-- BEGIN c_tabs -->
       <tr>
               <td colspan="{COLUMNS}" style="padding: 0px;">
                       <table width="100%" cellspacing="0" cellpadding="0">
                               <tr>
                                      {TABS}
                               </tr>
                       </table>
               </td>
       </tr>
<!-- END c_tabs -->
<!-- BEGIN c_spacer -->
       <img src="images/spacer.gif" width="1" height="7" border="" alt="" /><br />
<!-- END c_spacer -->

EOT;
/******************************************************************************
** Section <<<$template_album_list_cat>>> - END
******************************************************************************/


Additionally, you can undo the changes in index.php.

m8internet

Many thanks, I will now look to see how this amended code affects the page and follow through
Only been working with Coppermine Gallery for three days

Once I know the hierarchy of files and code I am sure I will be fully working with it in a few weeks time