First of all, I would like to say thanks for a great gallery. Very swifty and easy to work with.
The forum-part of plogger is also great. I have been able to find answers to almost all of my questions.
But I do have one question, that I reaaly cant find the answer to; How do a turn the gallery name into a link? I have found one thread concerning this question, but the answer doesn´t seem to apply for my version of plogger(or my gallery.php doesn´t look like the one in the answer.
I know that I have to put in a html-tag for linking, but I cannot find the file, that generates the gallery-name....
I hope this makes sense..... and that somebody can help me.
Link to my gallery; http://www.cirxo.dk/gallery/index.php
You just have to change two files in the theme that you're using.
in the default theme in the collections.php file you'll see a line like this: print plogger_get_collection_name().' <br />';
You could just change it to something like this: print '<a href="' . plogger_get_collection_url() . '" >plogger_get_collection_name() . ' </a><br />';
then it would link both the picture and name of the collection.
you then want to do the same thing in the collection.php (don't get them mixed up) by changing this: print '<a href="' . plogger_get_album_url() . '" >plogger_get_album_name() . ' </a><br /><div class="meta-header">(';
and then both of your collection selection and album selection pages with both have names of the collection/album that also link to the collection or album.
that should do it, if you're using a different theme just look for the plogger_get_album_name() function (or the collection_name) and just wrap it with an anchor tag (<a></a>) like i did above and you should be all set.