OK mark this solved.
Maybe update docs
In the same folder:
For jQuery EngineLine 44 script.query.js
- Code: Select all
img.html('<img src="' + jsondata[i].src + '" alt="' + jsondata[i].title + '" />');
Change to:
- Code: Select all
img.html('<img src="' + jsondata[i].src + '" alt="' + jsondata[i].title + '" /><span class="gkPortTitle">' + jsondata[i].title + '</span>');
Use with or without the span class, but having it there will allow you to hide the title via page/menu classes and CSS display:none
MOOTOOLS engineline 43 script mootools.js
- Code: Select all
'html': '<img src="' + jsondata[i].src + '" alt="' + jsondata[i].title + '" />'
change to:
- Code: Select all
'html': '<img src="' + jsondata[i].src + '" alt="' + jsondata[i].title + '" /><span class="gkPortTitle">' + jsondata[i].title + '</span>'
Keeping the classes the sameline 41 of controller.php BEFORE the closing </a> tag
- Code: Select all
echo '<span class="gkPortTitle">'.$this->parent->content[$i]['title'].'<span>';
I am not to hip on the link being behind the gkImgOverlay when the title extends wider then the image... but it works.
ALSO with the Gavick GK5 docs - a more elegant solution to the language/en-GB/en-GB.mod_news_pro_gk5.ini issue is to use the bult in Joomla language file overrides feature. Ever since I learned that little hidden gem, modifing language files and worrying about "update/overwrites" is a thing of the past.
Language OverridesThis guy has a blog tutorial
http://www.inmotionhosting.com/support/edu/joomla-25/language/add-new-language-overrideAnd of course for those who despise reading... there is Youtube.
https://www.youtube.com/watch?v=g8j6vyoAvTo