Thumbnail paging? Thumbnail paging?
 

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]

Main Menu

Thumbnail paging?

Started by cowgirlexpressions, March 23, 2005, 03:08:00 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

cowgirlexpressions

If I have 12 files in an album, and have my columns/rows set to 2x2, somewhere I should be able to access the rest of the files (a paging system), but I can't, it only shows the first 4 in default mode until you click the sort options at the top.  I could set it to have more rows, yes, but that doesn't seem right.  What if I ended up with a thousand files?  (Not likely, but still.)  I'm using a heavily hacked theme so I more than likely deleted something, but if someone could at least point me in the right direction to look or figure this one out, I'd appreciate it.

Thanks,
Ramsey

kegobeer

Not much I can tell you, other than you should compare the classic theme to your theme, and see what you cut out.  I'd start looking at $template_tab_display, and everywhere that {LEFT_TEXT} is located.
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

cowgirlexpressions

Found it (thanks keg).

In my // HTML template for thumbnails display...

The following was empty:

<!-- BEGIN tabs -->

<!-- END tabs -->


So I changed it to this:  (note the {TABS} array)

<!-- BEGIN tabs -->
        <tr>
                <td colspan="2">
      <table width="100%">
        <tr>
{TABS}
        </tr>
      </table>
                </td>
        </tr>
<!-- END tabs -->