Improve tooltip and keyword search Improve tooltip and keyword search
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Improve tooltip and keyword search

Started by rivimey, January 09, 2012, 05:23:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

rivimey

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

Αndré

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).

roaftech

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.
.
Steve Humphreys,
Help, Hope and Co-operation,
Asociatia Neemia, Dorohoi, Romania.
www.roaf.org/gallery

Αndré

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.php


Quote 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';