Advanced search  

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

Pages: [1]   Go Down

Author Topic: Disable album thumbs on main page?  (Read 2903 times)

0 Members and 1 Guest are viewing this topic.

jamz310

  • Coppermine newbie
  • Offline Offline
  • Posts: 14
Disable album thumbs on main page?
« on: July 31, 2004, 06:54:44 pm »

Hi all,

Just setup the gallery last night...smooth as silk...great app!
One question...

I have numerous albums displayed on the main page. I have no cataqories. Is there a way to just have the album
names listed without a thumbnail?. I want thumbs once I click into an album, but not on the main page. Just the album names.

Thanks...

Logged

Casper

  • VIP
  • Coppermine addict
  • ***
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 5231
Re: Disable album thumbs on main page?
« Reply #1 on: July 31, 2004, 08:27:50 pm »

Try this.

open themes/yourtheme/theme.php, and find this code;

Code: [Select]
// HTML template for the album list
$template_album_list = <<<EOT


Now in this section only, find;

Code: [Select]
<!-- BEGIN album_cell -->
        <td width="{COL_WIDTH}%" height="100%" valign="top">
        <table width="100%" height="100%" cellspacing="0" cellpadding="0">
        <tr>
                <td colspan="3" height="1" valign="top" class="tableh2">
                        <a href="{ALB_LINK_TGT}" class="alblink"><b>{ALBUM_TITLE}</b></a>
                </td>
        </tr>
        <tr>
                <td colspan="3">
                        <img src="images/spacer.gif" width="1" height="1"><br />
                </td>
        </tr>
        <tr height="100%">
                <td align="center" height="100%" valign="middle" class="thumbnails">
                        <img src="images/spacer.gif" width="{THUMB_CELL_WIDTH}" height="1" class="image" style="margin-top: 0px;
 margin-bottom: 0px; border: none;"><br />
                        <a href="{ALB_LINK_TGT}" class="albums">{ALB_LINK_PIC}<br /></a>
                </td>
                <td height="100%">
                        <img src="images/spacer.gif" width="1" height="1">
                </td>
                <td width="100%" height="100%" valign="top" class="tableb_compact">
                        {ADMIN_MENU}
                        <p>{ALB_DESC}</p>
                        <p class="album_stat">{ALB_INFOS}</p>
                </td>
        </tr>
        </table>
        </td>
<!-- END album_cell -->

And replace it with this;

Code: [Select]
<!-- BEGIN album_cell -->
        <td width="{COL_WIDTH}%" height="100%" valign="top">
        <table width="100%" height="100%" cellspacing="0" cellpadding="0">
        <tr>
            <td colspan="3" height="1" valign="top" class="tableh2">
                        <a href="{ALB_LINK_TGT}" class="alblink"><b>{ALBUM_TITLE}</b></a>
                </td>    
        </tr>
        <tr>
                <td colspan="2">
                        <img src="images/spacer.gif" width="1" height="1"><br />
                </td>
        </tr>
        <tr height="100%">
               
                <td height="100%">
                        <img src="images/spacer.gif" width="1" height="1">
                </td>
                <td width="100%" height="100%" valign="top" class="tableb_compact">
                        {ADMIN_MENU}
                        <p>{ALB_DESC}</p>
                        <p class="album_stat">{ALB_INFOS}</p>
                </td>
        </tr>
        </table>
        </td>
<!-- END album_cell -->

EDITED, for better looks.
« Last Edit: July 31, 2004, 08:33:48 pm by Casper »
Logged
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

jamz310

  • Coppermine newbie
  • Offline Offline
  • Posts: 14
Re: Disable album thumbs on main page?
« Reply #2 on: July 31, 2004, 08:41:16 pm »

You the man!...just like I wanted..


Thanx....
Logged
Pages: [1]   Go Up
 

Page created in 0.035 seconds with 20 queries.