Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: Category descriptions...  (Read 3225 times)

0 Members and 1 Guest are viewing this topic.

yaniv

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 18
Category descriptions...
« on: November 18, 2006, 02:43:34 pm »

hey all  ;)

In the main album list, if you add a category description it goes to the line underneath, so it adds it under the album title, is there anyway to add them on the same line, but so that it doesnt affect any other parts of the gallery?

thanks for all your help.  ;D

« Last Edit: November 19, 2006, 07:16:40 am by GauGau »
Logged

Gizmo

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1015
    • BullsEye Photos
Re: Category descriptions...
« Reply #1 on: November 18, 2006, 03:09:28 pm »

I link to your gallery or at least a screenshot with the issue circled will help but you will probably need to edit $template_album_list_cat and $template_album_list. If you don't have them in your theme.php, copy them from the sample>theme.php and paste into yours then edit to your needs.
Logged
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

yaniv

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 18
Re: Category descriptions...
« Reply #2 on: November 18, 2006, 09:08:11 pm »

Sorry its taken so long to reply... stuck at work :(

anyway this is what I want to do, I think its simple enough but not sure where to edit..

thanks for all your help, sorry for being such a noob  ;)
Logged

Gizmo

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1015
    • BullsEye Photos
Re: Category descriptions...
« Reply #3 on: November 18, 2006, 11:58:56 pm »

Quote
you will probably need to edit $template_album_list_cat and $template_album_list

If you dont' have $template_album_list in your theme.php, copy and paste it from the sample theme.php
Code: [Select]
// 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_compact">
<!-- 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="left" valign="top" class="tableh2">
                        <span class="alblink"><a href="{ALB_LINK_TGT}"><b>{ALBUM_TITLE}</b></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" class="image" style="margin-top: 0px; margin-bottom: 0px; border: none;" alt="" /><br />
                        <a href="{ALB_LINK_TGT}" class="albums">{ALB_LINK_PIC}<br /></a>
                </td>
                <td>
                        <img src="images/spacer.gif" width="1" height="1" border="0" alt="" />
                </td>
                <td width="100%" valign="top" align="left" class="tableb_compact">
                        {ADMIN_MENU}
                        <p>{ALB_DESC}</p>
                        <p class="album_stat">{ALB_INFOS}</p>
                </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">
                        <b>&nbsp;</b>
                </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_compact">
                    <div class="thumbnails" style="background-color:transparent"><img src="images/spacer.gif" width="1" height="{SPACER}" 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_compact">
<!-- 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;

Move the {ALB_DESC} tag from it's current location to
Code: [Select]
<span class="alblink"><a href="{ALB_LINK_TGT}"><b>{ALBUM_TITLE}</b></a></span>{ALB_DESC}
and edit accordingly to suit your needs. You may also have to edit $template_album_list_cat in the same manner.
Logged
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

yaniv

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 18
Re: Category descriptions...
« Reply #4 on: November 19, 2006, 12:12:53 am »

ok probably my fault for not explaining properly,

that is exactly what i wanted but not for albums, i just want it for the categorys.
exactly that but on categorys not albums.

Sorry for being such a tool hehehe if u just tell me the var ill try do it.

Thanks guys  ;)
Logged

yaniv

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 18
Re: Category descriptions...
« Reply #5 on: November 19, 2006, 12:16:32 am »

sorry i was being a huge newbie hehe

found the answer in the original theme.php just above what u pasted for me

thank you anyway :)
Logged
Pages: [1]   Go Up
 

Page created in 0.016 seconds with 15 queries.