How to Disable or Hide WordPress.com Automattic Stats Plugin Smiley Icon Cómo deshabilitar o esconder las estadísticas de WordPress.com Automattic plugin icono Smiley
WordPress.com Stats plugin for self-hosted WordPress blog (aka Automattic Stats plugin) is a good and free web visitors statistics tracker for WordPress blogging platform. Estadísticas de WordPress.com plugin para auto-organizada WordPress blog (alias Automattic Estadísticas plugin) es un buen y libre de los visitantes estadísticas web tracker para la plataforma de blogs WordPress. The WordPress.com Status plugin provides the most popular metrics, stats and information that a blogger wants to track in a clear and concise interface. El Estado de WordPress.com plugin proporciona la métrica más populares, las estadísticas y la información de que un blogger quiere hacer un seguimiento de forma clara y concisa interfaz.
However, after activating and implementing WordPress Stats plugin, a small smiley face icon will be displayed at the bottom of the page. Sin embargo, después de la activación y ejecución de Estadísticas plugin WordPress, una pequeña cara sonriente icono se mostrará en la parte inferior de la página. The smiley face, although tiny in size, may affect the overall look and feel of the blog, or causing confusion among visitors about the image that appears oddly at the bottom. La cara sonriente, aunque pequeño en tamaño, pueden afectar la apariencia y la sensación de blog, o causar confusión entre los visitantes sobre la imagen que aparece extrañamente en la parte inferior.
Luckily, it’s possible to hide the smiley face added by the WordPress.com Automattic Stats plugin, by using the following CSS hack. Afortunadamente, es posible ocultar la cara sonriente añadido por el WordPress.com Automattic Estadísticas plugin, mediante el uso de los siguientes CSS hack.
To hide the smiley face of WordPress.com Stats plugin, add the following CSS code to the WordPress blog’s stylesheet (style.css): Para ocultar la cara sonriente de WordPress.com Estadísticas del plugin, añadir el siguiente código CSS WordPress a la hoja de estilos del blog (style.css):
img#wpstats{width:0px;height:0px;overflow:hidden}
Alternatively, add the following JavaScript code into the WordPress footer.php after wp_footer() declaration: Por otra parte, añadir el siguiente código JavaScript en el footer.php WordPress después de wp_footer () declaración:
<script type=”text/javascript”> <script type="text/javascript">
var e = document.getElementById(”wpstats”); var e = document.getElementById ( "wpstats");
e.style.width = “0px”; e.style.width = "0px";
e.style.height= “0px”; e.style.height = "0px";
e.style.overflow = “hidden”; e.style.overflow = "oculto";
</script> </ script>
Note that the image is required for proper stats gathering and traffic tracking. Tenga en cuenta que la imagen es necesaria para la adecuada recopilación de estadísticas y de seguimiento de tráfico. Anything such as applying “display:none” to the image will cause the image not to be loaded by the browser and will break the stats. Nada como la aplicación de "mostrar: ninguno" a la imagen hará que la imagen no se carga por el navegador y romper las estadísticas.
One consent of using the CSS or JavaScript above is the usage of hidden overflow style, which may be treated as a hidden text or hidden link by search engines especially Google that may gives penalty to such implementation that may be perceived as untrustworthy since it presents information to search engines differently than to visitors. Un consentimiento de la utilización de la CSS o JavaScript es el uso de desbordamiento de estilo oculto, que puede ser tratada como un texto oculto o escondido vínculo por sobre todo los motores de búsqueda Google que da pena de mayo a dicha aplicación que pueden ser percibidos como de poca confianza, ya que presenta información a los motores de búsqueda diferente que a los visitantes.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta es una máquina traducido la página que se proporciona "TAL CUAL" SIN GARANTÍA. Machine translation may be difficult to understand. La traducción automática puede ser difícil de entender. Please refer to Por favor, consulte original English article artículo original Inglés whenever possible. siempre que sea posible.
Share and contribute or get technical support and help at Compartir y contribuir o recibir apoyo técnico y ayuda en My Digital Life Forums Mi vida digital foros .
Related Articles Artículos relacionados
- Permanently Disable AdSense-Deluxe WordPress Plugin Reward Plugin Author Option Desactivar permanentemente AdSense-Deluxe plugin WordPress plugin recompensa autor opción
- Caption Disabler WordPress Plugin to Disable and Remove Captions Functionality Leyenda Disabler WordPress Plugin para desactivar y eliminar la funcionalidad de subtitulos
- Tag Managing Thing Plugin for WordPress 2.3 or Above Gestión de etiquetas Cosa Plugin para WordPress 2.3 o encima de
- Technorati Incoming Links Plugin for WordPress Próximos enlaces Technorati plug-in para WordPress
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin Columna 3 Relajación WordPress Tema comentarios-paged.php para Paginado-Comentarios WordPress Plugin
- Using Invisible Counter with Official StatCounter Plugin for WordPress Usando invisible contra el oficial con StatCounter plug-in para WordPress
- StatTraq - Wordpress Plugin for Site Statistic and Traffic Counter StatTraq - plugin para Wordpress sitio estadística y contra el tráfico
- WLWManifest Disabler Plugin to Remove XLM Link in WordPress Blog Header WLWManifest Disabler plugin para eliminar XLM enlace en WordPress Blog de cabecera
- Automatically Update WordPress to Latest Version with Automatic Upgrade Plugin (WPAU) Actualización automática de WordPress a la versión más reciente, con actualización automática de plug-in (WPAU)
- WordPress Plugin: Display Google Analytics and FeedBurner Reports Statistics from Site Admin WordPress plugin: Pantalla de Google Analytics y FeedBurner las estadísticas de los informes del administrador del sitio
































