Per my earlier question about `/page/1` being added to the URL. The `getAlbumLink()` function automatically adds this, but it can be removed by commenting out part of the function like so:
`
function getAlbumLink() {
global $_zp_page;
$rewrite = pathurlencode($this->name) . '/';
$plain = '/index.php?album=' . urlencode($this->name). '/';
// the following section is commented out to prevent the addition of /page/1 in URLs
/* if ($_zp_page) {
$rewrite .= "page/$_zp_page";
$plain .= "&page=$_zp_page";
} */
return rewrite_path($rewrite, $plain);
}
`
Note this is only for use with a Galleria-style theme where additional paging is not required.