forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: jaana on September 03, 2009, 09:57:28 am

Title: [Solved]: Remove "x album(s) on x page(s)" label.
Post by: jaana on September 03, 2009, 09:57:28 am
Hi everyone!

I'm new here, and I tried searching for this on google and on the boards, but have found nothing so far to answer my question. I was wondering, how would I be able to remove the "x album(s) on x page(s)" label on the index page at the bottom of the album list, without also removing the page numbers? I have tried removing the {TABS} tag in my theme.php, but it takes the page numbers and links along with the info. Sorry if this is a total noob question. Thanks in advance for your help!
Title: Re: Remove "x album(s) on x page(s)" label.
Post by: jaana on September 03, 2009, 11:51:18 am
Okay, nevermind, I figured it out.  ;D

Turns out I just had to remove the {LEFT_TEXT} part from the following block of code in /themes/yourtheme.php.

Code: [Select]
// Template used for tabbed display
$template_tab_display = array('left_text' => '<td width="100%%" align="left" valign="middle" class="tableh1_compact" style="white-space: nowrap"><b></b></td>' . "\n",
    'tab_header' => '',
    'tab_trailer' => '',
    'active_tab' => '<td><img src="images/spacer.gif" width="1" height="1" alt="" /></td>' . "\n" . '<td align="center" valign="middle" class="tableb_compact"><b>{LEFT_TEXT}</b></td>',
    'inactive_tab' => '<td><img src="images/spacer.gif" width="1" height="1" alt="" /></td>' . "\n" . '<td align="center" valign="middle" class="navmenu"><a href="{LINK}"><b>%d</b></a></td>' . "\n",
    'inactive_prev_tab' => '<td><img src="images/spacer.gif" width="1" height="1" alt="" /></td>' . "\n" . '<td align="center" valign="middle" class="navmenu"><a href="{LINK}"><b>{PREV}</b></a></td>' . "\n",
    'inactive_next_tab' => '<td><img src="images/spacer.gif" width="1" height="1" alt="" /></td>' . "\n" . '<td align="center" valign="middle" class="navmenu"><a href="{LINK}"><b>{NEXT}</b></a></td>' . "\n",
);

Thanks! Hope this helps someone out in the future!