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.
Anyone having issues with jcarousel after upgrading to jQuery 1.3.x?
I've been working on this for many long nights and made some progress.. but now I think I've hit the wall. 2 major issues, is it even possible to get printImageDesc() working (and to remove the "caption" for example: 5:DSC_5115.jpg) and getting commenting working?
Have you guys been working around galleria? I tried zpGalleriffic before this one but it also had some major problems :/