How make it works on Version 3.5.1
-
On my Version 3.5.1 it seem don’t work. But some little fixes turn it back!
all changes are in plugin.php file:
line 422 change
$comment->comment_content .= ‘<img src=”‘ . $comment_image[‘url’] . ‘” alt=”” />’;
in
$comment->comment_content .= ‘<img src=”‘ . str_replace(WP_CONTENT_DIR, WP_CONTENT_URL, $comment_image[‘file’]). ‘” alt=”” />’;
line 269
change
$comment->comment_content .= ‘<img src=”‘ . $comment_image[‘url’] . ‘” alt=”” />’;
in
$comment->comment_content .= ‘<img src=”‘ . str_replace(WP_CONTENT_DIR, WP_CONTENT_URL, $comment_image[‘file’]). ‘” alt=”” />’;line 199
change
$image_url = $comment_image_data[‘url’];
in
$image_url = $comment_image_data[‘file’];
$image_url= str_replace(WP_CONTENT_DIR, WP_CONTENT_URL, $image_url);HOPE IT HELPS!!!
- The topic ‘How make it works on Version 3.5.1’ is closed to new replies.