Folks,
I've a an album at http://images.ivimey.org using cpg 1.5, and I'm wondering whether anyone has been able to improve two areas:
- keyword search: it would be nice to be able to see a list of keywords in a margin (maybe even tag cloud) and click on them to select photos displayed in thumbnail view.
- tooltips: current cpg uses the Title tag IIUC to display filename/filesize/dimensions/date. For my pics, that's not the useful info: I'd like to be able to customise this, and possibly to use a jquery plugin such as qTip (http://craigsworks.com/projects/qtip/) to display tooltips with more panache.
I can see how the current tooltip is created but I can't see any way to change it without changing core cpg files.
Regards,
Ruth
Quote from: rivimey on January 09, 2012, 05:23:57 PM
keyword search: it would be nice to be able to see a list of keywords in a margin (maybe even tag cloud) and click on them to select photos displayed in thumbnail view.
The clickable keyword list is a standard feature. There's also a plugin that creates a tag cloud for you.
Quote from: rivimey on January 09, 2012, 05:23:57 PM
tooltips: current cpg uses the Title tag IIUC to display filename/filesize/dimensions/date. For my pics, that's not the useful info: I'd like to be able to customise this, and possibly to use a jquery plugin such as qTip (http://craigsworks.com/projects/qtip/) to display tooltips with more panache.
I can see how the current tooltip is created but I can't see any way to change it without changing core cpg files.
Please post the relevant code section(s).
Quote from: Αndré on January 10, 2012, 04:10:35 PM
The clickable keyword list is a standard feature. There's also a plugin that creates a tag cloud for you.
Where can I find the code for modifying the keyword search routine? Specifically, I would prefer the tag cloud to have a single font size.
Quote from: roaftech on September 16, 2012, 06:17:16 PM
Where can I find the code for modifying the keyword search routine?
include/keyword.inc.phpQuote from: roaftech on September 16, 2012, 06:17:16 PM
I would prefer the tag cloud to have a single font size.
Find
$fontSize = (10 + ($keyword_count[$keywords_array[$i]] - $minQuantity) * $step);
and replace with something like
$fontSize = '12';