Hey
http://www.panopixel.org/zenphoto/ bottom-left link.
My theme resides in /public_html/zenphoto/themes/pp/
I've added a hardcoded custom album to /public_html/zenphoto/themes/pp/index.php so that I can have a flash panoramas page.
/public_html/zenphoto/themes/pp/index.php links to /public_html/zenphoto/themes/pp/virtual_panoramas.php
When I load it, I get this error:
Fatal error: Call to undefined function setThemeDomain() in /home/drslony/public_html/zenphoto/themes/pp/virtual_panoramas.php on line 1
The first 2 lines of my php:
<?php setThemeDomain("pp"); ?>
<?php if (!defined('WEBPATH')) die(); $firstPageImages = normalizeColumns('2', '6'); include ('theme-functions.php');?>
What do I need to change to be able to use ZenPhoto functions inside this custom album/file?
Comments
getGalleryTitle();
printHomeLink('', ' > ');
htmlspecialchars(getGalleryIndexURL());
printParentBreadcrumb();
printAlbumTitle(true);
Would also be awesome if I could have a next/previous button in the page that virtual_panoramas.php will link to, so people co open the next/previous pano without having to click back to virtual_panoramas.php
This is my old panoramas page:
http://www.panopixel.org/en_panoramas.php#1
This is my zenphoto gallery:
http://www.panopixel.org/zenphoto/
I'm moving all of those virtual panoramas into this new zenphoto hardcoded album:
http://www.panopixel.org/zenphoto/themes/pp/virtual_panoramas.php
So, now that I hope you understand what I'm trying to do, is there any way I can use those zenphoto functions in virtual_panoramas.php ?