• Resolved Dirk Claesen

    (@dirk-claesen)


    I just noticed that the comment is no longer displayed when hovering over a picture in the “comments on photos” widget. Instead of displaying the comment, the name of the picture is displayed.

    As I thought I accidentally removed a setting I went to your website and tried it over there. But also on your website the comment is no longer displayed.

    Am I overlooking something?

    http://wordpress.org/plugins/wp-photo-album-plus/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Must have been changed in an attempt to simplify code a few weeks ago.

    Will be fixed in the next version.

    You can patch it as follows:

    edit wppa-comment-widget.php line 59:

    .
    	if ($link) $title = esc_attr(stripslashes($link['title']));
    	else $title = $comment['comment'];

    change to:

    .
    //	if ($link) $title = esc_attr(stripslashes($link['title']));
    //	else
    	$title = esc_attr($comment['comment']);

    Thread Starter Dirk Claesen

    (@dirk-claesen)

    Thanks for the quick fix.

    I’ll wait for the official release. It’s not that urgent for me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comment not displayed when hovering over picture’ is closed to new replies.