See, I really did pull the winner out of a hat, lol. Well In my post “Get a copy of Blog Blazers” I said that two people would win copies. Well I’ve got a third now, so I know only a few people commented so, the chances are far greater that you could win! On with the show.
The three commentors that have won a copy of Blog Blazers are:
You can find out more about this plugin at the WordPress directory.
This plugin is an amazing plugin, but the new version breaks W3C validation. Mostly due to typo’s and small oversights. Lets take a looks at the original comment-validation.php file in version 0.3.
Hey, where you able to tell what need to be fixed? Well lets take a closer look.
Corrections
On line 15 you’ll see we need to change the closing tag to fit the link attribute and not a script. Since there is not closing link, will end it with a forward slash, we also we need the type attribute. From this:
That was pretty simple.. So I am also going to add a few lines that will return the code to a new line, so that my final code looks a little cleaner, this is something you don’t have to do.
Hey everyone, I’ve got two copies of Blog Blazers that I want to give away to you, the readers!
I got some copies from WordCamp Denver. And I would know like to give them to you. Please just leave a comment, and I will pick two people to receive a copy from WPCult. I am going to allow comments up till the 25th.
In WordPress, when you use wp_page_menu your anchor attribute’s usually carry a title with the same name. I’m not sure if it’s correct to do this, but it bother me when I hover over a page menu navigation link and I get a hover of the title.
You should head over the the newly redesigned site of Matt Mullenweg, the inventor of WordPress! His site is all new for the Spring season, and he has been tounting many of us with quick screen shots at WordCamp Las Vegas & WordCamp Denver. But finally, and I guess a little delayed, the new theme has launched. ¶
So I have been really busy, and haven’t been able to put up a new post since I got back from WordCamp Denver.
WordCult Screenshot
Working on some clients site’s and also a WordPress theme!
I have finished about 80% of the theme which is based off my current theme located on my personal blog site: TheFrosty. TheFrosty is using version 0.1 of the theme, which has many faults and bugs. I have fixed many of them, and probably added a few others.
In version 0.2 I’ve added a new jQuery “featured posts” loader and the option for sticky posts. I have also fixed a lot of CSS errors, it should W3C comply .
Also in the newer version I have tried to add more to the admin panel, in ways of options.
If you would like to download this theme and test it out before I release it to the community please let me know. I would love to get some feedback or ideas on what you’ve got to say. Just use the contact form or send me a message on Twitter.
Let me know what you think! Leave you comments and feedback. I am also trying to get a forum up on the site as well.
Thanks!
Frosty
Update for 0.2:
I’ve updated my personal site: TheFrosty to the latest version of WordCult (0.2). I’ve already found some small bugs and CSS fixes that need to be taken care of. Also I don’t think that the Adsense display is working correctly.
If you’ve noticed any issues please contact me or leave a comment.
Update for 0.2.1:
The new version, 0.2.1 brings in some integration from Justin TadlocksWidgets Reloaded plugin. It’s fully integrated into the theme. So you’ll notice some widgets disappear and be replaced by others. If you need to get them back Justin makes a plugin that will “release” the old widgets on your new theme install.
Over the weekend, I attended WordCamp Denver, and I was asked by John Hawkins how to force links to open in a new tab with out editing the source code. So, today lets learn a simple jQuery trick to open all external links in your site in a new tab or window. We are going to make sure you have jQuery active on your site, you can do this easily in WordPress, since it’s bundled with the latest installations. Use this code in your header: <?php wp_enqueue_script('jquery'); ?> then, below the wp_head add the following:
Well hello to everyone, hope you are going to have a great weekend! I am heading to Denver Colorado tonight for the first WordCamp. I have decided to help out some here a bit, and I will be using my web cam to broadcast live inside the Denver Art Museum. Plus I am video recording with my HDD camera, so that someone can put all the video together in the end and publish it to WordPress TV
Morning Update:
Looks like there is not a good location to broadcast live from the morning session. Will have to wait till the afternoon.
Afternoon Update:
Got in the technical meet late, didn’t get a very good seat against the wall in the corner. So the angle of broadcast would not work so good. Also uStream isn’t picking up my web cam
I beleive you can view the rest of WordCamp Denver (Blogger Trac) at http://bitwirelive.com
Hey everyone, as you may have noticed I have a running on the site. While everything almost everything moved over smoothly, there was an issue with how my parent theme striped text in typography. This caused some plugins, like cformsII to not be allowed to print to the screen. Justin had helped to find a fix to filter the hybrid_typography function.
Originally this function filtered out and changed some text that would not validate as XHTML. This had to be removed by running a new function in the child theme’s function.php file.
add_action('init', 'remove_typography');
function remove_typography() {
remove_filter('the_content', 'hybrid_typography', 11);
}
Well, I spent the last 6 hours updating the new theme into the site. Please let me know what you think. There will still be a few more updates, so please be patient.
I have been really busy on putting together a custom theme for this site. And while I do love WooThemes’sTHiCK Theme by Matt Brett, I feel that a custom theme suited to the sites needs would fit better.
Comment Validation update plus fix
By Austin on March 16, 2009
On this site I use the Comment Validation plugin from Jörn Zaefferer.
You can find out more about this plugin at the WordPress directory.
This plugin is an amazing plugin, but the new version breaks W3C validation. Mostly due to typo’s and small oversights. Lets take a looks at the original
comment-validation.phpfile in version 0.3.function commentValidation() { echo ' '; echo ''; echo ''; echo ''; } add_action('wp_head', 'commentValidation');Hey, where you able to tell what need to be fixed? Well lets take a closer look.
Corrections
On line 15 you’ll see we need to change the closing tag to fit the link attribute and not a script. Since there is not closing link, will end it with a forward slash, we also we need the type attribute.
From this:
To this:
That was pretty simple.. So I am also going to add a few lines that will return the code to a new line, so that my final code looks a little cleaner, this is something you don’t have to do.
Here is my example:
The n will return a new line..
I also don’t need the code on every page so I have added in a conditional code of
is_singular. You can view the final code below.So here we see the final in total. Remember I’ve added a few lines that you may not want to add or use:
function commentValidation() { if (is_singular()) { echo ' '; echo "n"; echo ''; echo "n"; echo ''; echo "n"; echo ''; echo "nn"; } else { return; } }Posted in Plugins, Tips & Tricks | Tagged Bug Fix, Comment Validation, Plugins