mvdl79
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I display the latest available version of WordPress?And is possible to display the latest WordPress version on my website?
The website does not have WordPress. Of course I could do this by hand, but then I have to check versions and edit regularly by hand…
Forum: Plugins
In reply to: All in One Adsense and YPN – No support?Okay after disabling one plugin at a time, editing php code, etc. I found out what’s causing the problem:
The following plugin: RAW-html apparently causes serious problems with the Adsense script. I use this plugin to display html tables. Though it’s weird, cause in the beginning it didn’t cause any problems at all?
Forum: Fixing WordPress
In reply to: [Plugin: All in One Adsense and YPN] SERIOUS BUG 02/02/2009Okay after disabling one plugin at a time, editing php code, etc. I found out what’s causing the problem:
The following plugin: RAW-html apparently causes serious problems with the Adsense script. I use this plugin to display html tables. Though it’s weird, cause in the beginning it didn’t cause any problems at all?
Forum: Fixing WordPress
In reply to: [Plugin: All in One Adsense and YPN] SERIOUS BUG 02/02/2009🙁
Forum: Plugins
In reply to: All in One Adsense and YPN – No support?Please help…
Forum: Fixing WordPress
In reply to: [Plugin: All in One Adsense and YPN] SERIOUS BUG 02/02/2009This didn’t help me. I am still having problems with this script.
Though after editing the .php file, the code <!–adsensestart–> shows up correctly when I view the page source.However, the Adsense advertisement shows up before that and does not show up random anymore. Sigh.
Forum: Plugins
In reply to: All in One Adsense and YPN – No support?Could the problem be caused when I updated to the latest WordPress? 2.7.1, or is that out of the question? 🙁
Forum: Plugins
In reply to: All in One Adsense and YPN – No support?I also tried replacing this:
$repchar = “<br”;
into this:
$repchar = “<!”;
Though this show the code correctly in the page source, it doesn’t change anything. The ads still show up at the same old place. And as soon as I select 2 ads to show on a page, my whole website goes crazy.
I already tried backtracking the problem, but I cannot find what is causing these problems!
//edit
I also tried reverting back to an older version; 1.71, but that also didn’t help. Weird. It seems like something, don’t know what, is messing up the Adsense PHP script. Sigh.
Forum: Fixing WordPress
In reply to: Is it possible to show posts without day, month and year?Nevermind I found the plugin called WP-Sticky. Seems to do what I want. 😀
Forum: Fixing WordPress
In reply to: Is it possible to show posts without day, month and year?On page.php? Or where?
And how do I hide the dates?Forum: Fixing WordPress
In reply to: Remove <meta name=”generator” content=”WordPress 2.5″ />Fixed it as described above.
Forum: Fixing WordPress
In reply to: Remove <meta name=”generator” content=”WordPress 2.5″ />Can’t I just change the header.php (from the theme)?
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />If I would change that, that wouldn’t result in nasty problems right?
Forum: Fixing WordPress
In reply to: Remove <meta name=”generator” content=”WordPress 2.5″ />Okay I am using WordPress 2.7 along with Deepstack theme and I tried adding the following codes to my theme’s functions.php:
remove_action('wp_head', 'wp_generator');and I also tried:
<?php remove_action('wp_head', 'wp_generator'); // Remove Windows Live Writer link in header // Do Not do this if you use it remove_action('wp_head', 'wlwmanifest_link'); remove_action('wp_head', 'rsd_link'); // Remove WP version info function hide_wp_vers() { return ''; } // end hide_wp_vers function add_filter('the_generator','hide_wp_vers'); ?>But both didn’t do anything, I still get the following line when I look at the source of my page:
<meta name="generator" content="WordPress 2.7" />Can someone please help me out? It should be hidden with the previous mentioned code parts, right? :S