• Resolved kingkongballs

    (@kingkongballs)


    I’m setting up my photo blog and have noticed that when I make a post, I have a missing image icon under the title that seems to link to the post page and I have no idea what it should be or how to get rid of it.

    https://www.pixyz.net/y

    It also only seems to show in Chrome. IE9 and FF don’t show it.

    I can see it belongs to <div class=”post-image”>
    but I can’t see where that line is written to delete it.

    Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • It looks like it’s maybe intended for a featured image, but isn’t coded to skip if the image is not set.

    The empty img tag is there in all the browsers, you just can’t see it in IE9 and FF.

    If you don’t care what it is, you could just add

    .post-image {
        display: none;
    }

    to your style sheet to get rid of it, or delete the code that’s trying to insert it in the first place (maybe in index.php or loop.php?)

    Thread Starter kingkongballs

    (@kingkongballs)

    thanks.
    found it in the loop.php and got rid of it.

    knew what to look for, didn’t know where to look!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing image permalink thing shows in Chrome?’ is closed to new replies.