Hello there,
Is there anyone out there who can help me with a couple of changes i want to implement?
here we go:
I love to speak to someone who can do some work on my site.. please let me know.
greetings,
Momo
Are you modifying a current theme?
substr(getAlbumTitle(), 0, 25); would, for instance, give you the first 25 characters of the title. For breaking at words you would have something like`$title = getAlbumTitle;
if(!($pos = strpos($title, ' ', -1)===false)) {
$title = substr($title, 0, $pos);
}`
which would give the title up to the first blank.
getImateDesc() will give you the picture description. Just add it to your thumbs loop code.@Kingmomo: And you could take a look at the trac, there is a list of all theme functions (currently not the new ones of the newest build) you can use to modify your theme: http://www.zenphoto.org/trac/wiki/TemplateFunctionsGuide