How to Disable or Hide WordPress.com Automattic Stats Plugin Smiley Icon Como desabilitar ou ocultar WordPress.com Automattic Stats plugin Smiley ícone
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. WordPress.com Stats plugin para o auto-blog hospedado WordPress (aka Automattic Stats plugin) é uma boa e gratuita na web tracker visitantes estatísticas 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. O WordPress.com Status plugin fornece o mais popular métricas, estatísticas e informações de que um blogueiro quer monitorar de maneira clara e concisa interface.
However, after activating and implementing WordPress Stats plugin, a small smiley face icon will be displayed at the bottom of the page. No entanto, após a ativação e execução Stats WordPress plugin, um pequeno sorriso ícone será exibido na parte inferior da 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. O rosto sorridente, apesar de pequeno em tamanho, pode afetar todo o look and feel do blog, ou causando confusão entre os visitantes sobre a imagem que aparece na parte inferior em número ímpar.
Luckily, it’s possible to hide the smiley face added by the WordPress.com Automattic Stats plugin, by using the following CSS hack. Felizmente, é possível para esconder o rosto sorridente acrescentado pela WordPress.com Automattic Stats plugin, usando o seguinte 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 esconder o rosto sorridente do WordPress.com Stats plugin, adicione o seguinte código CSS para o WordPress do blog de estilo (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: Em alternativa, adicione o seguinte código JavaScript no WordPress footer.php após wp_footer () declaração:
<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. Note que a imagem é necessária para a correcta recolha das estatísticas do trânsito e de rastreamento. 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. Qualquer coisa como a aplicação "display: none" para a imagem não fará com que a imagem a ser carregada pelo navegador e vai quebrar o stats.
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. Um consentimento de usar o CSS ou JavaScript acima, é o uso de transbordamento escondido estilo, que pode ser tratado como um texto oculto ou escondido link por mecanismos de busca do Google em especial que proporciona maio penalização para essa implementação que pode ser percebido como desonesto, uma vez que apresenta informações para motores de pesquisa de forma diferente para os visitantes.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma máquina página traduzida que é fornecido "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de entender. Please refer to Por favor referir-se original English article artigo original Inglês whenever possible. quando possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter assistência técnica e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos Relacionados
- Permanently Disable AdSense-Deluxe WordPress Plugin Reward Plugin Author Option Desativar permanentemente AdSense-Deluxe WordPress Plugin recompensa plugin autor opção
- Caption Disabler WordPress Plugin to Disable and Remove Captions Functionality Legenda Disabler WordPress plugin para desabilitar e remover as legendas funcionalidade
- Tag Managing Thing Plugin for WordPress 2.3 or Above Tag Managing Thing Plugin para WordPress 2.3 ou Acima
- Technorati Incoming Links Plugin for WordPress Technorati Links recebidos plugin para WordPress
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin 3 Coluna Relaxação WordPress Theme paged.php para o Paged-observações-Comentários WordPress Plugin
- Using Invisible Counter with Official StatCounter Plugin for WordPress Usando invisível balcão com oficiais StatCounter plugin para WordPress
- StatTraq - Wordpress Plugin for Site Statistic and Traffic Counter StatTraq - Wordpress plugin para o tráfego local e Estatística Counter
- WLWManifest Disabler Plugin to Remove XLM Link in WordPress Blog Header WLWManifest Disabler plugin para remover XLM Link em WordPress Blog cabeçalho
- Automatically Update WordPress to Latest Version with Automatic Upgrade Plugin (WPAU) Atualizar automaticamente a versão mais recente do WordPress Automatic Upgrade Plugin (WPAU)
- WordPress Plugin: Display Google Analytics and FeedBurner Reports Statistics from Site Admin WordPress Plugin: Display Google Analytics e FeedBurner relatórios estatísticos a partir do site Admin
































