Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Andrew Rockwell

    (@rockwell15)

    Update to 1.4.1 and the bug has been fixed ??

    Hi – I just installed 1.4.1 and no images are showing up – just a box with an X – did I do something wrong? Thank you!!!

    Thread Starter Brogaard

    (@jenzgaard)

    @andrew – Thx for the attention but still the same error unfortunately…

    Plugin Author Andrew Rockwell

    (@rockwell15)

    I fixed another bug having to do with images with links, try updating to 1.4.2 and let me know if that fixes it.

    Thread Starter Brogaard

    (@jenzgaard)

    Sorry no. Just updated and still the same. Appreciate your quick reply and remain hopeful ??

    Thread Starter Brogaard

    (@jenzgaard)

    I think one LI image at the top was added but all the recurrent images (linkedin-update-logo) to each LI news date line are still missing. Can be omitted though… (through css) since the different content images appear which is the important part.

    Plugin Author Andrew Rockwell

    (@rockwell15)

    Hm, it seems LinkedIn is sending broken images. I’ll have a fix in the next update.

    For now you can hide the broken images with this javascript:

    var checkImages = document.getElementById('linkedin-con').getElementsByTagName('img');
    for ( var i = checkImages.length - 1; i >= 0; i-- ) {
    	if ( ! checkImages[ i ].complete || typeof checkImages[ i ].naturalWidth === 'undefined' || checkImages[ i ].naturalWidth === 0 ) {
    		checkImages[ i ].style.display = 'none';
    	}
    }

    Let me know if you need help with placing the javascript on the site

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘image placeholders’ is closed to new replies.