forum.coppermine-gallery.net
Support => Older/other versions => cpg1.3.x Support => Topic started by: cowgirlexpressions on March 23, 2005, 03:08:00 am
-
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
-
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.
-
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 -->