So I just tried adding tags on the keywords tab in the jalbum. But it I believe it doesn't seem to be added on the website. Is there something missing that I might have not done? Please see attachments on what I mean. Many thanks.
Hydrogen is a great idea, but it is a code nightmare for us mere mortals. However:
In Hydrogen's skin folder goto res/controller/js/script.js and open the file in a text editor.
Goto line 192 and look for the code block
case 'image':
slides[imgVidIndex] = {
name: obj.name,
path: obj.path,
slide: currPath + obj.image.path,
width: obj.image.width,
height: obj.image.height,
type: 'image',
comment: obj.comment
Now, after the last 'comment' add a comma and then a new line. Now enter
keywords: obj.keywords
Next is where to add the keywords, the below will add it after the images comments.
Open the skin's index.htt file and goto line 206 and look for
// print thumbs
$jA(window).on('thumbsView', function (event) {
A bit further down look for the code
var text = slides[i].comment == undefined ? "" : slides[i].comment;
Now, insert two new lines of code
if(slides[i].keywords != undefined) text += " keywords: " + slides[i].keywords;
text = text.replaceAll(",",", ");
Save all the edits and rebuild your album. The line numbers given may be out slightly, I can't remember the other changes made before, nor do I know if you incorporated them.