Why is there a smiley face on the bottom of the page? It is on the bottom left of mine. It is visible to anyone but not logged in administrators.
I thought it was a sign of a hacker, so I backed up the database and recreated everything.
Why is there a smiley face on the bottom of the page? It is on the bottom left of mine. It is visible to anyone but not logged in administrators.
I thought it was a sign of a hacker, so I backed up the database and recreated everything.
The search works:
http://wordpress.org/support/topic/182213?replies=8
The smiley face is usually from the WP Stats plugin, I wrote a really simple plugin of my own to get rid of it.
I didn't really want to bring up a old topic but I was searching for why WP Stats put that on my site. However it is easy to remove with css.
img.wpstats {
display: none;
}This worked for me...it was apparently an ID and not a class:
img#wpstats {
display: none;
}Here's another way to do it:
img#wpstats{visibility:hidden; height:0px;}
This topic has been closed to new replies.