rekall
Forum Replies Created
-
Forum: Plugins
In reply to: Avoid WP-Stats little face at the bottom of my pagestried all of the above suggestions… then i put this in my footer.php after the call to wp_footer();
<script type=”text/javascript”>
var e = document.getElementById(“wpstats”);
e.style.width = “0px”;
e.style.height= “0px”;
e.style.overflow = “hidden”;
</script>Forum: Fixing WordPress
In reply to: Smiley Face Link to ww.wp.xz.cnthe above didn’t work for me, but this does:
put this in footer.php after wp_footer();
<script type=”text/javascript”>
var e = document.getElementById(“wpstats”);
e.style.width = “0px”;
e.style.height= “0px”;
e.style.overflow = “hidden”;
</script>Forum: Fixing WordPress
In reply to: smiley below footerput this in footer.php after wp_footer();
<script type=”text/javascript”>
var e = document.getElementById(“wpstats”);
e.style.width = “0px”;
e.style.height= “0px”;
e.style.overflow = “hidden”;
</script>Forum: Plugins
In reply to: Where To Put Hide-Smiley Code?put this in your footer.php AFTER the call to wp_footer();
<script type=”text/javascript”>
var e = document.getElementById(“wpstats”);
e.style.width = “0px”;
e.style.height= “0px”;
e.style.overflow = “hidden”;
</script>Forum: Fixing WordPress
In reply to: Image Captions causing Post errorscame across the same issue today.
wordpress 2.6.1 & php 4.3.2
upgrading php to 4.4.9 or php5 is not in our future.
help???