Hi there,
The plugin works fine, just one little problem, when you add a link on the image, the link does not appear on the page. It’s in the HTML, we get a structure like this in HTML
<a href="milink">
<figure>
<img> </img>
</figure>
</a>
but in the DOM on Firebug (chrome and also Firefox) I get
<p><a href="milink"></a></p>
<figure>
<img> </img>
</figure>
</a>
and the link is not clicable. I tried to highlight the a tag, indeed it’s in the DOM before the figure element. Strange.
Any idea how to fix it ?