Viewing 6 replies - 1 through 6 (of 6 total)
  • janjonas

    (@janjonas)

    Hi ovinic,
    thanks for your comment. What’s the exact name of the theme you are using? Do you use any other plugins that are responsible for showing/manipulating the avatar pictures?

    Thread Starter Ovidiu Nicolae

    (@ovinic)

    Hi,
    I’m using a child theme that I designed myself and named it after my domain (ovinic). I’m not using any other plugins for showing avatar pictures.

    Thank you.

    janjonas

    (@janjonas)

    Is the avatar image displayed correctly when you use the default/unmodified tewntytwelve theme?

    Could you please post the HTML source code of the broken avatar image? You can extract the HTML source code of the broken avatar image with a tool like Firebug.

    Hope this helps…

    Thread Starter Ovidiu Nicolae

    (@ovinic)

    No, the avatar isn’t displayed correctly with the twentytwelve theme either. I think I found out what is causing this issue by looking at the html with firebug. It’s a conflict with the lazy load plugin. This is the html output for the avatar image:
    http://jsfiddle.net/9mfy2/

    So the source of the image is actually a transparent gif. I think lazy load does this for all the images when a page is reloaded and only replaces the transparent gif with the actual image when it is visible in the viewport. For some reason it doesn’t do it for the avatar images when using WP-Ajaxify-Comments.

    janjonas

    (@janjonas)

    Hi,

    I think lazy-load causes the problem here. Please try the following settings:

    ‘OnAfterUpdateComments’ callback:
    jQuery('img[data-lazy-src]').each(function() { var src = jQuery(this).attr('data-lazy-src'); if (!src) return; jQuery(this).removeAttr('data-lazy-src').attr({'data-lazy-loaded': 'true', 'src': src}); });

    Hope this helps …

    Thread Starter Ovidiu Nicolae

    (@ovinic)

    Awesome! Lazy load was definitely causing the problem, but now everything works great with the code above. Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Avatars not showing after submitting a comment’ is closed to new replies.