Progress...
I´ve managed to show the image description inside the slimbox.
In functions.php
REPLACED:
function annotateImage() {
global $_zp_current_image;
if (!$_zp_current_image->getShow()) {
$tagit = "\n".gettext('The image is marked not visible.');
} else {
$tagit = '';
}
return sprintf(gettext('View the image: %s'),GetBareImageTitle()).$tagit;
}
WITH:
function annotateImage() {
global $_zp_current_image;
if (!$_zp_current_image->getShow()) {
$tagit = "\n".gettext('The image is marked not visible.');
} else {
$tagit = "\n".getImageDesc('');
}
return sprintf(gettext('View the image: %s'),GetBareImageTitle()).$tagit;
}
Halfway trough the desired result...
To show only text just type the desired description
And the result I was after...
Type the folowing in the description box:
<link removed by admin>
And you get the link working in the slimbox...
It would be nice if someone who realy understands php to clean up the code or maybe even turn this idea into a plugin or something.
I´m using this as a links page for a custumer, I know it isn´t the cleanest code and not a fully function plugin but I´m just a designer who does a little bit of freelance work to some friends. In this case it´s for a tattoo studio and I was asked to leave the links page as if it was a gallery page so this is the best I can do.
I hope someone grabs this idea and turn it into a "real" function of zenphoto.
Thanks for the help