How to Disable or Hide WordPress.com Automattic Stats Plugin Smiley Icon Come disabilitare o nascondere WordPress.com Automattic Stats Plugin smiley icona
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 per auto-ospitato WordPress blog (pseudonimo Automattic Statistiche del plug-in) è una buona e libera visitatori statistiche web tracker per piattaforma di blog 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. Il WordPress.com Stato plugin fornisce la piu 'conosciuti parametri, statistiche e informazioni che un blogger vuole tenere traccia in modo chiaro e conciso interfaccia.
However, after activating and implementing WordPress Stats plugin, a small smiley face icon will be displayed at the bottom of the page. Tuttavia, dopo l'attivazione e l'attuazione di WordPress plugin di Statistiche, una piccola faccina icona verrà visualizzata nella parte inferiore della pagina. 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 faccina sorridente, anche se piccolo in termini di dimensioni, possono influenzare il look and feel del blog, o creare confusione tra i visitatori circa l'immagine che appare stranamente in fondo.
Luckily, it’s possible to hide the smiley face added by the WordPress.com Automattic Stats plugin, by using the following CSS hack. Fortunatamente, è possibile nascondere la faccina aggiunto dal WordPress.com Automattic Stats plugin, utilizzando il seguente codice 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): Per nascondere la faccina di WordPress.com Stats plugin, aggiungere il seguente codice CSS per il blog WordPress foglio di stile (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: In alternativa, aggiungere il seguente codice JavaScript di WordPress nel footer.php dopo wp_footer () dichiarazione:
<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 = "nascosto";
</script> </ script>
Note that the image is required for proper stats gathering and traffic tracking. Si noti che l'immagine è necessaria per una corretta raccolta di statistiche e di monitoraggio del traffico. 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. Tutto ciò, come l'applicazione "display: none" per l'immagine farà sì che l'immagine non deve essere caricato dal browser e rompere le statistiche.
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 consenso di utilizzare il codice CSS o JavaScript di cui sopra è l'utilizzo di stile nascosto overflow, che può essere trattata come un testo nascosto o link nascosti dai motori di ricerca di Google in particolare che possono dà pena di tale attuazione, che possono essere percepiti come inaffidabili, dato che presenta le informazioni ai motori di ricerca diversa da quelli per i visitatori.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una macchina tradotto pagina che è fornito "così come sono" senza garanzia. Machine translation may be difficult to understand. La traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale in inglese whenever possible. ogniqualvolta ciò sia possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e contribuire a My Digital Life Forums La mia vita digitale forum .
Related Articles Articoli correlati
- Permanently Disable AdSense-Deluxe WordPress Plugin Reward Plugin Author Option Disattivare permanentemente adsense-deluxe wordpress plugin plugin ricompensa autore opzione
- Caption Disabler WordPress Plugin to Disable and Remove Captions Functionality Caption disabler wordpress plugin per disattivare e rimuovere le didascalie funzionalità
- Tag Managing Thing Plugin for WordPress 2.3 or Above Gestione dei tag Thing Plugin per WordPress 2.3 o superiore
- Technorati Incoming Links Plugin for WordPress Technorati Incoming Links plugin per WordPress
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin 3 Colonna Relax WordPress Tema commenti-paged.php di paging-Commenti WordPress Plugin
- Using Invisible Counter with Official StatCounter Plugin for WordPress Utilizzando con Contatore invisibile ufficiale StatCounter Plugin per WordPress
- StatTraq - Wordpress Plugin for Site Statistic and Traffic Counter StatTraq - Wordpress Plugin per Statistica del sito e contrastare il traffico
- WLWManifest Disabler Plugin to Remove XLM Link in WordPress Blog Header WLWManifest disabler plugin per rimuovere XLM link in wordpress blog header
- Automatically Update WordPress to Latest Version with Automatic Upgrade Plugin (WPAU) WordPress aggiornare automaticamente alla versione più recente con l'aggiornamento automatico Plugin (WPAU)
- WordPress Plugin: Display Google Analytics and FeedBurner Reports Statistics from Site Admin WordPress Plugin: visualizzazione di Google Analytics e FeedBurner relazioni statistiche del sito da admin
































