Enfold Version: 4.7.6.4
Wordpress 5.6.2 and lower
Found in file “image_hotspots.php” at row 576
$html = substr( $html, 0, $pos + 1 ) . $button . '</div>';
my quick fix:
$html = substr( $html, 0, $pos ) . $button . '</div>';
Best regards, Mischa
Attachments:
Before the fix
After the fix