Lazyloading broken
`ovic_get_attachment_image` returns HTML like the following:
However `dukamarket_template_loop_product_thumbnail` calls `wp_specialchars_decode` which changes "svg>" back to "svg>"
then `ovic_lazyload_alter_html` searches for images tags using regexp but it looks for ">" which is contained in "svg>" now, and so it doesn't see that the image already has "lazyload" already in it, nor does it see the entire tag.
The result is that lazy loading is added against, this time to a partial SVG.
I have the latest version of the theme installed.