Hi when you added
I added those two files to the theme directory, and this did not help. I also tried adding navigation=”disable” into the shortcode. I thought this would disable anything from happening when you click on a thumbnail, but the lightbox still appeared. Any ideas?
Did you add the proper php file into the two CataBlog files?
Also in your template below,
<div class="catablog-row catablog-gallery">
<code><a href="%PERMALINK%" class="catablog-image" %LINK-TARGET% %LINK-</code>REL%>
<img src="%IMAGE-THUMBNAIL%" alt="" />
<strong class="catablog-title">%TITLE%</strong>
div class="catablog-description">%DESCRIPTION%</div>
</div>
You have an error, remove the <code>
tag so that it looks like this.
<div class="catablog-row catablog-gallery">
<a href="%PERMALINK%" class="catablog-image" %LINK-TARGET% %LINK-REL%>
<img src="%IMAGE-THUMBNAIL%" alt="" />
<strong class="catablog-title">%TITLE%</strong></a>
<div class="catablog-description">%DESCRIPTION%</div>
</div>
I hope this helps you.
Kind regards