I'm using a personnal theme based from Cimi and Default.
I just just put a `echo getFullImage();` (for testing) in my template because I need the real path of the picture. Doing the same with Default theme -> same error
Try with get FileName(), getAlbumName... -> same error
getFullImage in file class-image.php, method Image::getFullImage() Returns a path to the original image in the original folder. getFullImageURL in file template-functions.php, function getFullImageURL() Returns the url to original image.
True, but `getFullImage()` is a class object method that you can't use directly, it needs to be use like `$_zp_current_image->getFullImage()` for example, otherwise you get an error. `getFullImageURL()` is the template equivalent.
Comments
I just just put a `echo getFullImage();` (for testing) in my template because I need the real path of the picture.
Doing the same with Default theme -> same error
Try with get FileName(), getAlbumName... -> same error
http://www.zenphoto.org/documentation/elementindex.html#g
getFullImage
in file class-image.php, method Image::getFullImage()
Returns a path to the original image in the original folder.
getFullImageURL
in file template-functions.php, function getFullImageURL()
Returns the url to original image.
But it's too difficult for me.