Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Rod,
Is it possible to access and change the 2014 HTML engine code so that the individual image caption html is not created as <strong>. Where in the lrwebengine is that piece of code, and what do I do to remove the <strong> tag?
thanks,
Tim
Open TTG-2014-HTML-Gallery.lrwebengine\lib\html\single.html in a web editor, and remove the <strong> and </strong> bracketing <%= getImage(index).metadata.imgTitle %> near the bottom of the file. That should do it. (I haven't tested this solution.)
The html in TTG-2014-HTML-Gallery.lrwebengine/lib/html/single.html has an error that results in the DOCTYPE declaration being doubled.
the section:
<!DOCTYPE html>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><![endif]-->
<!--[if IE 8]><html class="lt-ie9" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><![endif]-->
<!--[if gt IE 8]><!--><html class="gt-ie8" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><!--<![endif]-->
should be omitted, as it is included in the "head.html" file.
Easy enough to fix for end users, just open up the single.html file with Notepad and delete the offending lines.
Pages: 1