<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>1stwebdesigner - Graphic and Web Design Blog &#187; Wordpress</title>
	<atom:link href="http://www.1stwebdesigner.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stwebdesigner.com</link>
	<description>1stwebdesigner is a design blog dedicated to bloggers, freelancers, web-developers and designers. Topics focus on web design and inspirational articles.</description>
	<lastBuildDate>Thu, 02 Sep 2010 21:00:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Ultimate Guide to WordPress 3.0 Comment Form Customization</title>
		<link>http://www.1stwebdesigner.com/wordpress/comment-form-customization/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/comment-form-customization/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 10:00:25 +0000</pubDate>
		<dc:creator>Kevin Stanley</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23188</guid>
		<description><![CDATA[With the release of WordPress 3.0, a new function is given to us to use. comment_form() will display the comment form on any given page with ease. This will be good for both theme developers and plugin developers alike. This new function opens up new doors and allows us to modify things that before were [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/comment-form-customization/"><img class="alignleft size-full wp-image-23304" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/wordpress-custom-comments-form.png" alt="" width="150" height="150" /></a>With the release of WordPress 3.0, a new function is given to us to use. <code>comment_form()</code> will display the comment form on any given page with ease. This will be good for both theme developers and plugin developers alike. This new function opens up new doors and allows us to modify things that before were much more complicated.</p>
<p>In this article I will explain how to use the new <code>comment_form() </code>function within WordPress 3.0 to give better usability within our comments function inside of WordPress.<span id="more-23188"></span></p>
<p>To use this function you can open up your comments.php file within your theme and view the code that should look similar to the following:</p>
<h4>comments.php file</h4>
<pre class="brush: php;">
&lt;?php if ('open' == $post-&gt;comment_status) : ?&gt;

&lt;div id=&quot;respond&quot;&gt;
&lt;h3&gt;&lt;?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?&gt;&lt;/h3&gt;
&lt;div class=&quot;cancel-comment-reply&quot;&gt;
	&lt;small&gt;&lt;?php cancel_comment_reply_link(); ?&gt;&lt;/small&gt;
&lt;/div&gt;

&lt;?php if ( get_option('comment_registration') &amp;&amp; !$user_ID ) : ?&gt;
You must be &lt;a href=&quot;&lt;?&lt;span class=&quot;&gt;&lt;?php echo get_option('siteurl'); ?&gt;/wp-login.php?redirect_to=&quot;&gt;logged in&lt;/a&gt; to post a comment.
&lt;pre&gt;&lt;?php else : ?&gt;&lt;/pre&gt;
&lt;form action=&quot;&lt;?&lt;span class=&quot;&gt;&lt;?php echo get_option('siteurl'); ?&gt;/wp-comments-post.php&quot; method=&quot;post&quot; id=&quot;commentform&quot;&gt;&lt;/form&gt;

&lt;?php if ( $user_ID ) : ?&gt;

Logged in as &lt;a href=&quot;&lt;?&lt;span class=&quot;&gt;&lt;?php echo get_option('siteurl'); ?&gt;/wp-admin/profile.php&quot;&gt;&lt;/a&gt;. &lt;a title=&quot;Log out of this account&quot; href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot;&gt;Log out »&lt;/a&gt;

&lt;?php else : ?&gt;

&lt;input id=&quot;author&quot; name=&quot;author&quot; type=&quot;text&quot; value=&quot;&lt;?&lt;span class=&quot; /&gt;&lt;?php echo $comment_author; ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;1&quot; /&gt;
&lt;label for=&quot;author&quot;&gt;&lt;small&gt;Name &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;

&lt;input id=&quot;email&quot; name=&quot;email&quot; type=&quot;text&quot; value=&quot;&lt;?&lt;span class=&quot; /&gt;&lt;? php echo $comment_author_email; ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;2&quot; /&gt;
&lt;label for=&quot;email&quot;&gt;&lt;small&gt;Mail (will not be published) &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;

&lt;input name=&quot;&lt;span class=&quot; type=&quot;text&quot; /&gt;url&quot; id=&quot;url&quot; value=&quot;&quot; size=&quot;22&quot; tabindex=&quot;3&quot; /&gt;
&lt;label for=&quot;&lt;span class=&quot;&gt;url&quot;&gt;&lt;small&gt;Website&lt;/small&gt;&lt;/label&gt;

&lt;?php endif; ?&gt;

&lt;!--&lt;small&gt;&lt;strong&gt;XHTML:&lt;/strong&gt; You can use these tags: &lt;code&gt;&lt;/code&gt;&lt;/small&gt;

--&gt;

&lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; cols=&quot;100%&quot; rows=&quot;10&quot; tabindex=&quot;4&quot;&gt;

&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; id=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Submit Comment&quot; /&gt;
&lt;?php comment_id_fields(); ?&gt;
&lt;/p&gt;
&lt;?php do_action('comment_form', $post-&gt;ID); ?&gt;

&lt;/form&gt;

&lt;?php endif; // If registration required and not logged in ?&gt;
&lt;/div&gt;
&lt;?php endif; // if you delete this the sky will fall on your head ?&gt;

&lt;/div&gt;
</pre>
<p>You can delete the above code in comments.php file and replace it with the following:</p>
<pre class="brush: php;">
&lt;?php comment_form(); ?&gt;
</pre>
<p>The Wordpress 3.0 function &#8211; comment_form() has 2 parameters that can be optionally modified to your liking: Here is the example arguments that can be used:</p>
<pre class="brush: php;">
&lt;?php comment_form($args, $post_id); ?&gt;
</pre>
<p>Now to explain what each of these parameters do so we know how to use them:</p>
<p>$args: This contains our options for our strings and fields within the form and etc.<br />
$post_id: Post ID is used to generate the form, if null it will use the current post.</p>
<p>The $arg parameter uses the following values by default:</p>
<h4>Default $arg Values</h4>
<pre class="brush: php;">
&lt;?php $defaults = array( 'fields' =&gt; apply_filters( 'comment_form_default_fields', array(
    'author' =&gt; '&lt;p class=&quot;comment-form-author&quot;&gt;' .
                '&lt;label for=&quot;author&quot;&gt;' . __( 'Name' ) . '&lt;/label&gt; ' .
                ( $req ? '&lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;' : '' ) .
                '&lt;input id=&quot;author&quot; name=&quot;author&quot; type=&quot;text&quot; value=&quot;' .
                esc_attr( $commenter['comment_author'] ) . '&quot; size=&quot;30&quot; tabindex=&quot;1&quot;' . $aria_req . ' /&gt;' .
                '&lt;/p&gt;&lt;!-- #form-section-author .form-section --&gt;',
    'email'  =&gt; '&lt;p class=&quot;comment-form-email&quot;&gt;' .
                '&lt;label for=&quot;email&quot;&gt;' . __( 'Email' ) . '&lt;/label&gt; ' .
                ( $req ? '&lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;' : '' ) .
                '&lt;input id=&quot;email&quot; name=&quot;email&quot; type=&quot;text&quot; value=&quot;' . esc_attr(  $commenter['comment_author_email'] ) . '&quot; size=&quot;30&quot; tabindex=&quot;2&quot;' . $aria_req . ' /&gt;' .
                '&lt;/p&gt;&lt;!-- #form-section-email .form-section --&gt;',
    'url'    =&gt; '
&lt;p class=&quot;comment-form-url&quot;&gt;' .&lt;/p&gt;

                '&lt;label for=&quot;url&quot;&gt;' . __( 'Website' ) . '&lt;/label&gt;' .
                '&lt;input id=&quot;url&quot; name=&quot;url&quot; type=&quot;text&quot; value=&quot;' . esc_attr( $commenter['comment_author_url'] ) . '&quot; size=&quot;30&quot; tabindex=&quot;3&quot; /&gt;' .
                '

&lt;!-- #&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;form-section-url&lt;/span&gt; .form-section --&gt;' ) ),
    'comment_field' =&gt; '&lt;p class=&quot;comment-form-comment&quot;&gt;' .
                '&lt;label for=&quot;comment&quot;&gt;' . __( 'Comment' ) . '&lt;/label&gt;' .
                '&lt;textarea id=&quot;comment&quot; name=&quot;comment&quot; cols=&quot;45&quot; rows=&quot;8&quot; tabindex=&quot;4&quot; aria-required=&quot;true&quot;&gt;&lt;/textarea&gt;' .
                '&lt;/p&gt;&lt;!-- #form-section-comment .form-section --&gt;',
    'must_log_in' =&gt; '
&lt;p class=&quot;must-log-in&quot;&gt;' .  sprintf( __( 'You must be &lt;a href=&quot;%s&quot;&gt;logged in&lt;/a&gt; to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '&lt;/p&gt;

',
    'logged_in_as' =&gt; '
&lt;p class=&quot;logged-in-as&quot;&gt;' . sprintf( __( 'Logged in as &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt;. &lt;a title=&quot;Log out of this account&quot; href=&quot;%s&quot;&gt;Log out?&lt;/a&gt;&lt;/p&gt;

' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ),
    'comment_notes_before' =&gt; '&lt;p class=&quot;comment-notes&quot;&gt;' . __( 'Your email is &lt;em&gt;never&lt;/em&gt; published nor shared.' ) . ( $req ? __( ' Required fields are marked &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;' ) : '' ) . '&lt;/p&gt;',
    'comment_notes_after' =&gt; '&lt;dl class=&quot;form-allowed-tags&quot;&gt;&lt;dt&gt;' . __( 'You may use these &lt;abbr title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/abbr&gt; tags and attributes:' ) . '&lt;/dt&gt; &lt;dd&gt;&lt;code&gt;' . allowed_tags() . '&lt;/code&gt;&lt;/dd&gt;',
    'id_form' =&gt; 'commentform',
    'id_submit' =&gt; 'submit',
    'title_reply' =&gt; __( 'Leave a Reply' ),
    'title_reply_to' =&gt; __( 'Leave a Reply to %s' ),
    'cancel_reply_link' =&gt; __( 'Cancel reply' ),
    'label_submit' =&gt; __( 'Post Comment' ),
); ?&gt;
</pre>
<p>The parameters of $arg are self-defined by names. Also remember that you can leave $arg as null if you wish and it will use the default.</p>
<p>You can also customize $arg using the comment_form_default_fields filter.<br />
Example: If you wanted to hide the URL field on your form, you can simply insert the following code to your functions.php file:</p>
<h4>Functions.php file</h4>
<pre class="brush: php;">
add_filter('comment_form_default_fields', 'mytheme_remove_url');

function mytheme_remove_url($arg) {
    $arg['url'] = '';
    return $arg;
}
</pre>
<p>All fields are also each passed through a filter of the form comment_form_field_$name<br />
This gives us more options to use for each way of changing our output.<br />
$name is the value used in the array of fields. So we can also hide it using the following:</p>
<pre class="brush: php;">
add_filter('comment_form_default_fields', 'mytheme_remove_url');

function mytheme_remove_url($arg) {
    $arg['url'] = '';
    return $arg;
}
</pre>
<p>Using the comment_form() function is an excellent way to keep the code within your template clean. It gives you more ways to customize the comments form using sets of filters.<br />
For users of WordPress 3.0 it is suggested you use this new code to replace the old style comment form code.</p>
<h2>Customizing with Hooks</h2>
<p>Using more hooks to customize our comments_form. Here are some more options and examples to show more on how this can be used.</p>
<p>The first hook is comment_form_default_fields. This lets us modify the three main fields: author, email, and website. It’s a filter, so we can change things as they pass through it. The fields are stored in an array which contains the html that is output. So it looks sorta like this:</p>
<pre class="brush: php;">
array(
	'author' =&gt; '&lt;p class=&quot;comment-form-author&quot;&gt;...',
	'email'  =&gt; '&lt;p class=&quot;comment-form-email&quot;&gt;...',
	'url'    =&gt; '&lt;p class=&quot;comment-form-url&quot;&gt;...'
);
</pre>
<p>This simple method shows the generic way the code can display, but using other modifications you can change more fields like this:</p>
<pre class="brush: php;">
function my_fields($fields) {
$fields['new'] = '&lt;p&gt;a new input field is here&lt;/p&gt;';
return $fields;
}
add_filter('comment_form_default_fields','my_fields');
</pre>
<p>This allows us to add a new input field, or to modify the existing fields.</p>
<p>Fields are not the only items that can be changed. There is also a comment_form_defaults filter as well. It gets the surrounding text of the comments form.</p>
<h4>Comment Form Default</h4>
<pre class="brush: php;">
$defaults = array(
	'fields'               =&gt; apply_filters( 'comment_form_default_fields', $fields ),
	'comment_field'        =&gt; '&lt;p class=&quot;comment-form-comment&quot;&gt;...',
	'must_log_in'          =&gt; '&lt;p class=&quot;must-log-in&quot;&gt;...',
	'logged_in_as'         =&gt; '&lt;p class=&quot;logged-in-as&quot;&gt;...',
	'comment_notes_before' =&gt; '&lt;p class=&quot;comment-notes&quot;&gt;...',
	'comment_notes_after'  =&gt; '&lt;dl class=&quot;form-allowed-tags&quot;&gt;...',
	'id_form'              =&gt; 'commentform',
	'id_submit'            =&gt; 'submit',
	'title_reply'          =&gt; __( 'Leave a Reply' ),
	'title_reply_to'       =&gt; __( 'Leave a Reply to %s' ),
	'cancel_reply_link'    =&gt; __( 'Cancel reply' ),
	'label_submit'         =&gt; __( 'Post Comment' ),
);
</pre>
<p>Everything that is displayed as a section of the comment form area are defined in this one place, so they can be modded to your liking.<br />
Remember, that unlike the fields, when you add new parts here it won&#8217;t change anything. The fields get pushed through for display, so these<br />
are just settings that get used randomly.</p>
<p>Filters are not the only way to change this. The comment_form function can accept an array of arguments as different parameters, and each of those<br />
will modify the form as well. If you wanted to make a simple modification to alter the wording of &#8220;leave a reply&#8221; &#8211; Then you could change the following:</p>
<pre class="brush: php;">
&lt;?php comment_form(array('title_reply'=&gt;'Leave a Reply, And Voice Yourself')); ?&gt;
</pre>
<p>This allows us to have a more simple way of making changes without all the hassle of filters, but remember that the filters can also be useful and more powerful for other operations.</p>
<h2>And Yes, There is More!</h2>
<p>While the comment form is generated there are also some action hooks being called. If you choose to put something into the form itself while it is being generated you can do so by using the following:</p>
<h3>Action hooks.</h3>
<p>• comment_form_before<br />
• comment_form_must_log_in_after<br />
• comment_form_top<br />
• comment_form_logged_in_after<br />
• comment_notes_before<br />
• comment_form_before_fields<br />
• comment_form_field_{$name} (a filter on each and every field, where {$name} is the key name of the field in the array)<br />
• comment_form_after_fields<br />
• comment_form_field_comment (a filter on the “comment_field” default setting, which contains the textarea for the comment)<br />
• comment_form (action hook after the textarea, mainly for backward compatibility)<br />
• comment_form_after<br />
• comment_form_comments_closed</p>
<h2>Styling with CSS</h2>
<p>Don’t forget your styling! Each part of the comment form contain classes and id’s that can be styled using CSS. You can check out the HTML output and see all of the entries to style to your liking. The output is also semantic and contains label tags.</p>
<h2>In Closing&#8230;</h2>
<p>I myself have been using this new function in creating themes for WordPress 3.0 and have found it to be really useful. If used correctly you can accomplish many different results that can better help your coding of a comments form for yourself or a client. Play around with the code and have fun &#8211; Feel free to ask any questions. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/comment-form-customization/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Build a Custom WP e-Commerce Theme (Part 1)</title>
		<link>http://www.1stwebdesigner.com/wordpress/how-to-build-custom-wp-e-commerce-theme-1/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/how-to-build-custom-wp-e-commerce-theme-1/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 10:00:36 +0000</pubDate>
		<dc:creator>Leonel Hilario</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=22891</guid>
		<description><![CDATA[If you have ever tried to create an E-Commerce shop with WordPress, I am sure you know WP e-Commerce. If you are  a beginner and don&#8217;t know that much about it, I will suggest you to read this tutorial so that we are good to start the complex development. In this article I will show [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/how-to-build-custom-wp-e-commerce-theme-1/"><img class="alignleft size-full wp-image-23075" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/djavu-shop-intro.jpg" alt="" width="150" height="150" /></a>If you have ever tried to create an E-Commerce shop with WordPress, I am sure you know WP e-Commerce. If you are  a beginner and don&#8217;t know that much about it, I will suggest you to read <a href="http://www.1stwebdesigner.com/tutorials/create-e-commerce-websites-wordpress/">this tutorial</a> so that we are good to start the complex development. In this article I will show the process of how my latest custom WP e-Commerce theme was built from design concept through to completed theme.</p>
<p><span id="more-22891"></span></p>
<p>You can <a target="_blank" title="Preview of djavu-shop theme" href="http://www.djavupixel.com/products-page/">preview the theme here</a> or <a target="_blank" title="Download djavu-theme" href="http://www.djavupixel.com/download/Djavu-shop">download djavu-shop work in progress theme here</a>.</p>
<p><strong>Tutorial Requirements</strong></p>
<p>This tutorial assumes you are fairly comfortable using the following languages</p>
<ul>
<li>Html</li>
<li>CSS</li>
<li>jQuery</li>
<li>PHP</li>
<li>Wordpress</li>
</ul>
<p><strong>What will we learn in this tutorial?</strong></p>
<ul>
<li>Creating a WP e-Commerce Theme</li>
<li>Brief introduction to Wp e-Commerce file relationship</li>
<li>A dynamic accordion slider (using jQuery Kwicks) that uses the company categories as content</li>
<li>Playing with CSS3 to add a nice touch</li>
</ul>
<h2>Preview of our WP e-Commerce Theme</h2>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/preview-wp-e-commerce-theme1.jpg"><img class="alignleft size-full wp-image-22892" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/preview-wp-e-commerce-theme1.jpg" alt="" width="570" height="548" /></a></p>
<p>The theme I&#8217;m working on is named Djavu-shop. The main feature of this theme is it&#8217;s accordion slide on top of the products. This accordion displays the available categories and/or brands. Sliding over the accordion will bring a brief description of the category. A click on the link will display all the products of this category or brand.</p>
<p>A few fancy effects such as the buttons and shadows are made with CSS3.This tutorial is the first part of a suite of tutorials. For the first part we will only focus on the product page (see picture above).</p>
<h2>Anatomy of a WP e-Commerce theme</h2>
<p>Before getting stuck into the build process, it&#8217;s important to know how WP e-Commerce themes work. Open the default theme <em><span style="color: #808080;"><strong>(wordpress-directory)/wp-content/plugins/ wp-e-commerce/themes/default)</strong></span></em>, you&#8217;ll notice that it&#8217;s all contained in a folder, and there&#8217;s around 9 core files. Note the default theme is always loaded! Your theme only overrides the default theme behavior. In our theme we will include more files which allow extra customization.</p>
<p>Here&#8217;s an overview of the main files you&#8217;ll be working with:<br />
<code>cart_widget.php                // Cart widget to be displayed on the sidebar for example<br />
category_widget.php	        // Displays a widget with the categories and brands given in WP e-Commerce<br />
default.css			// Stylesheet of WP e-commerce. Original file is always loaded!<br />
functions.php		 	//<br />
grid_view.php			//<br />
images/                         // Folder containing WP e-Commerce related images<br />
list_view.php			//<br />
products_page.php		// Page where all products are displayed, per category, brand, etc…<br />
shopping_cart_page.php	        // It’s the checkout page. Where the client puts his name, address etc…<br />
single_product.php		// Description of a product</code><br />
Each of these files then contains a series of PHP <span style="color: #778899;"><strong><span style="color: #000000;">template tags</span></strong></span>. These tags tell WP e-Commerce where to insert the dynamic content. A good example is the <span style="color: #808080;"><strong>&lt;?php  echo wpsc_the_product_title (); ?&gt;</strong></span> tag, which will display your product title <em>(or name if it is more understandable)</em>.A catalog of all available template tags are <a target="_blank" title="WP e-Commerce Template Tags" href="//getshopped.org/resources/docs/design-and-layout/template-tags/">here</a> . Probably you will find a tag that will do exactly what you want or if it is WordPress related try the <a target="_blank" title="WordPress Codex" href="http://codex.wordpress.org/">WordPress Codex</a>.</p>
<h3>Create a new theme out of the default</h3>
<p>The best way to start creating your own theme is to make a copy of the original theme. The default theme is in <span style="color: #808080;"><strong><em>(wordpress-directory)/wp-content/plugins/ wp-e-commerce/themes/default</em></strong></span>. Duplicate the “<span style="color: #888888;"><em>default</em></span>” folder and call it “<span style="color: #888888;"><em>djavu-shop</em></span>”. After this open the new created theme folder and rename the default.css file to djavu-shop.css. Delete everything inside your css file (!) and put the following code inside of it.</p>
<pre class="brush: css;">
&lt;code&gt;/*Theme Name: Djavu-Shop Theme
Theme URI: http://www.djavupixel.com
Description: Just another WP-e-commerce theme
Version: 0.2
Author: Leonel Hilario
Author URI: http://www.djavupixel.com*/&lt;/code&gt;
</pre>
<p>Login to your wp-admin section and browse to <span style="color: #808080;"><em><strong>Store&gt;Settings&gt;Presentation</strong></em></span> page, click on the drop-down list and <span style="color: #888888;"><strong>djavu-shop</strong></span><strong> </strong>theme should be in the list. <strong>Select it and save changes</strong>.<br />
Create a “<span style="color: #888888;">js</span>” folder inside our theme. We will put some JavaScript inside. <a target="_blank" title="Download Kwucks for jQuery (v. 1.5.1)" href="http://kwicks.googlecode.com/svn/branches/v1.5.1/Kwicks/jquery.kwicks-1.5.1.pack.js">Download jQuery kwicks</a> and put “jquery.kwicks-1.5.1.pack.js” on the <span style="color: #888888;">js</span> folder created before.<br />
In this tutorial we will <strong>only</strong> work with<strong> </strong><span style="color: #888888;"><strong>djavu-shop.css</strong></span> and <span style="color: #888888;"><strong>products_page.php</strong></span>. The next tutorials will focus on other files.<br />
<strong> </strong></p>
<p><strong>Reminder</strong></p>
<p>Inside the “djavu-shop” folder you should have the following files:<br />
<code>cart_widget.php<br />
category_widget.php<br />
djavu-shop.css<br />
functions.php<br />
grid_view.php<br />
images/<br />
js/<br />
list_view.php<br />
products_page.php<br />
shopping_cart_page.php<br />
single_product.php</code></p>
<h3>Preparing WP e-Commerce for our theme</h3>
<h4><strong>Add 4 categories in WP e-Commerce</strong></h4>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/categories-wp-e-commerce.png"><img class="alignleft size-full wp-image-22910" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/categories-wp-e-commerce.png" alt="" width="310" height="255" /></a>Login into your WordPress account and then click on <span style="color: #888888;">Store&gt;Categories</span>. For this example we will create 4 categories “<span style="color: #888888;">MacBook Pro</span>”, “<span style="color: #888888;">iMac</span>”, “<span style="color: #888888;">iPod Touch</span>” and “<span style="color: #888888;">iPhone</span>”.  <strong>Add</strong> a small <strong>description</strong> and a <strong>picture</strong> to all categories! In our example we need 4 pictures of at least 320 pixel width and 320 pixel height (for this tutorial I used 4 pictures of 576&#215;320).  Here below is an example screenshot and here you can download the pictures.</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/categories-description-wp-e-commerce.png"><img class="size-full wp-image-22914 alignnone" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/categories-description-wp-e-commerce.png" alt="" width="524" height="333" /></a>For the lazy one like me here are the products descriptions:</p>
<ul>
<li><strong>MacBook Pro:</strong> The fastest, most powerful MacBook Pro ever. Three Times.</li>
<li><strong>iMac:</strong> The ultimate all-in-one. Turbocharged.</li>
<li><strong>iPod Touch: </strong>A great portable game player.</li>
<li><strong>iPhone 4: </strong>This changes everything. Again.</li>
</ul>
<p><strong>Configure presentation settings</strong></p>
<p>Just copy the same settings as in the picture below. Please note that this picture is tall. Click on the image to open the full size</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/wp-e-commerce-presentation-settings.png"><img class="size-medium wp-image-22919 alignnone" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/wp-e-commerce-presentation-settings-106x300.png" alt="" width="106" height="300" /></a></p>
<h2>Let&#8217;s start building our theme!</h2>
<p>Open <span style="color: #888888;"><strong>products_page.php</strong></span> and go to line 35 it you be &#8220;<em>&lt;ul class=&#8217;wpsc_categories&#8217;&gt;</em>&#8220;. Delete line 35 to 48, just before the endif. Here we will add Kwicks for jQuery which is an accordion slider.</p>
<p>Here is the PHP/HTML code:</p>
<pre class="brush: php;">
&lt;code&gt;&lt;ul class='kwicks'&gt;
&lt;?php wpsc_start_category_query(array('category_group'=&gt;get_option('wpsc_default_category'), 'show_thumbnails'=&gt; get_option('show_category_thumbnails'))); ?&gt;
&lt;li&gt;
&lt;div class=&quot;kwicks_inner&quot;&gt;
&lt;div class=&quot;image&quot;&gt;&lt;?php wpsc_print_category_image(); ?&gt;&lt;/div&gt;
&lt;div class=&quot;caption-title transparent_class&quot;&gt;
&lt;?php wpsc_print_category_name();?&gt;
&lt;/div&gt;
&lt;div class=&quot;caption transparent_class&quot;&gt;
&lt;a href=&quot;&lt;?php wpsc_print_category_url();?&gt;&quot; class=&quot;wpsc_category_link&quot;&gt;&lt;?php wpsc_print_category_name();?&gt;&lt;/a&gt;
&lt;?php if(get_option('wpsc_category_description')) :?&gt;
&lt;?php wpsc_print_category_description(&quot;&lt;div class='wpsc_subcategory'&gt;&quot;, &quot;&lt;/div&gt;&quot;); ?&gt;
&lt;?php endif;?&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;?php wpsc_end_category_query(); ?&gt;
&lt;/ul&gt;&lt;/code&gt;
</pre>
<p>We created an unordered list and inside of it we put we <span style="color: #888888;"><strong>kwicks_inner</strong></span> class. Inside we put the picture as we think it is more flexible than putting it on the CSS. In class <span style="color: #888888;"><strong>caption-title</strong></span> we put the title of the category. On mouse over the class <span style="color: #888888;"><strong>caption</strong></span> will be displayed which contains the title and the small description that we entered before (see Preparing WP e-Commerce for our theme). Now open <span style="color: #888888;"><strong>djavu-shop.css</strong></span> and paste this CSS code:</p>
<ul>
<li>wpsc_print_category_image() prints the category image unscaled</li>
<li>wpsc_print_category_name() prints the title of the category</li>
<li>wpsc_print_category_description is the description we gave before to this category</li>
<li>wpsc_print_category_url() link to the category content</li>
</ul>
<pre class="brush: css;">

&lt;code&gt;/* Product Page - The accordion (kwicks) effect on top of page */&lt;/code&gt;

&lt;code&gt; &lt;/code&gt;

&lt;code&gt;.kwicks {
list-style: none;
position: relative;
margin: 0;
padding: 0;
border: 1px solid #ddd;
box-shadow: 2px 2px 5px #ddd;
-moz-box-shadow: 2px 2px 5px #ddd;
-webkit-box-shadow: 2px 2px 5px #ddd;
}&lt;/code&gt;

&lt;code&gt; &lt;/code&gt;

&lt;code&gt;#content #products_page_container ul{
margin: 0;
padding: 0;
}

.kwicks li{
display: block;
overflow: hidden;
padding: 0;
cursor: pointer;
}

.kwicks li{
float: left;
width: 160px;
height: 320px;
margin-right: 5px;
}

.kwicks li a {
color: #fff;
}

.kwicks .kwicks_inner {
width: 320px;
}

.kwicks .image {
width: 90px;
height: 240px;
float: left;
}

.kwicks .caption-title {
background-color:#333333;
color:#CCCCCC;
float:left;
font-size:16px;
margin:40px 0 0 16px;
padding:3px 0 3px 16px;
text-align:left;
width:100%;
}

.kwicks .caption {
display: none;
text-align: center;
width: 320px;
height: 80px;
color: #ccc;
font-size: 16px;
float: right;
/* Playing with CSS - Adding some transparency */
background-color: #333;
}

.kwicks li.active .caption {
display: block;
}

.kwicks li.active .caption-title {
display: none;
}

&lt;/code&gt;

&lt;code&gt;.transparent_class {
filter:alpha(opacity=70);
-moz-opacity:0.7;
-khtml-opacity: 0.7;
opacity: 0.7;
}&lt;/code&gt;
</pre>
<p>So this was a bit of code. As you may read we added a few CSS shadows. The <span style="color: #888888;"><strong>.kicks li.active</strong></span> class is fired when a mouse passes over the accordion. Here we hide the <span style="color: #888888;"><strong>.caption-title</strong></span> to show the <span style="color: #888888;"><strong>.caption</strong></span><strong> </strong>which contains the title and description of this category. For more information about <a target="_blank" title="Kwicks" href="http://www.jeremymartin.name/projects.php?project=kwicks">Kwicks</a> please read the well documented page or if you want to try other nice effects.</p>
<p>Now we hase the HTML and CSS code and here is the JavaScript code that will create all the magic:</p>
<pre class="brush: jscript;">
&lt;code&gt;&lt;script src=&quot;&lt;?php echo $djavu_theme_url ?&gt;/js/jquery.kwicks-1.5.1.pack.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(document).ready(function($){
$('.kwicks').kwicks({
max : 320,
spacing : 0
});
});
&lt;/script&gt;&lt;/code&gt;
</pre>
<p>Note that you can put this at the top oder bottom of the page. I would recommend at the bottom of the page so that the layout loads faster.</p>
<h3>Conclusion</h3>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/preview-wp-e-commerce-theme1.jpg"><img class="alignleft size-medium wp-image-22892" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/preview-wp-e-commerce-theme1-300x288.jpg" alt="" width="300" height="288" /></a>This may look a bit difficult at first sight, but it&#8217;s not and it is the first part of a series of tutorials. Make a temporary install of WP e-Commerce and fill it with dummy content this will really help understanding how WP e-Commerce works and will also help to find errors. In our next tutorial we will focus on more general parts of the design as I am working on it ;-)</p>
<p><a target="_blank" title="Preview djavu-shop theme" href="http://www.djavupixel.com/products-page/">Preview the theme</a> | <a target="_blank" title="Download djavu-shop files" href="http://www.djavupixel.com/download/Djavu-shop">Download files</a></p>
<h2>Further Discussion</h2>
<p>Have some thoughts of this theme? Give them to me, I’d love to hear them. This is as much a proof of concept as it is a tutorial. It introduces basic html, css, jQuery, PHP and the WP e-Commerce plugin. I’m sure there will be people out there who will feel that a perfect e-commerce start page is something else. If so, what would you do?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/how-to-build-custom-wp-e-commerce-theme-1/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>35 Beautiful and Free WordPress 3.0 Ready Themes</title>
		<link>http://www.1stwebdesigner.com/wordpress/free-wordpress-3-0-ready-themes/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/free-wordpress-3-0-ready-themes/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 21:00:32 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=21700</guid>
		<description><![CDATA[This is a list of free and  beautiful WordPress 3.0 ready themes. They were harder to find than I thought, maybe because Wordpress 3 is so new and theme developers need more time to catch up. There are some early adopters, however, and the best of them are in this list. To see the theme [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/free-wordpress-3-0-ready-themes/"><img class="alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/01/wordpress-preview.jpg" alt="" width="150" height="150" /></a>This is a list of free and  beautiful WordPress 3.0 ready themes. They were harder to find than I thought, maybe because Wordpress 3 is so new and theme developers need more time to catch up. There are some early adopters, however, and the best of them are in this list.<strong> To see the theme demo, just click on the theme picture.<span id="more-21700"></span><br />
</strong></p>
<p><strong> </strong></p>
<h2><a target="_blank" href="http://www.themes2wp.com/download-free-stargaze-wordpress-theme">1. Stargaze</a></h2>
<p><strong><a target="_blank" href="http://www.themes2wp.com/goto/http://www.jinsonathemes.com/demo/?themedemo=stargaze"><img class="alignnone size-full wp-image-21709" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/1-stargaze.jpg" alt="" width="580" height="435" /></a></strong></p>
<p>Great theme with a black background. If you have a blog about games, this is the theme for you.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<h2><a target="_blank" href="http://www.themes2wp.com/download-free-photoblog-wordpress-theme-wordpress-theme">2. PhotoBlog</a></h2>
<p><strong><a target="_blank" href="http://www.jinsonathemes.com/demo4/"><img class="alignnone size-full wp-image-21711" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2-photoblog.jpg" alt="" width="580" height="589" /></a></strong></p>
<p><strong> </strong></p>
<p>This is a theme ideal if you want to showcase a bunch of pictures.</p>
<h2><a target="_blank" href="http://www.themes2wp.com/download-free-freshblog-a-free-premium-wordpress-theme-wordpress-theme">3. Freshblog</a></h2>
<p><strong><a target="_blank" href="http://www.bestwp.net/demo/freshblog/"><img class="alignnone size-full wp-image-21723" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/9-freshblog.jpg" alt="" width="580" height="460" /></a></strong></p>
<p>I really like this time because it&#8217;s simply + people these days love green!</p>
<p><a target="_blank" href="http://www.themes2wp.com/download-free-freshblog-a-free-premium-wordpress-theme-wordpress-theme"><img src="../wp-content/uploads/2010/08/button1.png" alt="" width="240" height="60" /></a></p>
<h2><a target="_blank" href="http://fthrwght.com/autofocus/">4. AutoFocus+</a></h2>
<p><strong><a target="_blank" href="http://fthrwght.com/autofocus/plusdemo/"><img class="alignnone size-full wp-image-21725" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/8-autofocus.jpg" alt="" width="580" height="446" /></a></strong></p>
<p>Great theme if you want to showcase various photos. As you can see, once you hover over the photo you&#8217;ll see a description.</p>
<h2><a target="_blank" href="http://newwpthemes.com/wordpress-theme/mobileworld/">5. MobileWorld</a></h2>
<p><strong><a target="_blank" href="http://newwpthemes.com/demo/MobileWorld/"><img class="alignnone size-full wp-image-21727" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/4-mobileworld1.jpg" alt="" width="580" height="420" /></a></strong></p>
<p>Like the name suggests, this is a theme recommended for a blog on mobile phones.</p>
<h2><a target="_blank" href="http://newwpthemes.com/wordpress-theme/animes/">6. Animes</a></h2>
<p><strong> </strong></p>
<p><strong><a target="_blank" href="http://newwpthemes.com/demo/Animes/"><img src="../wp-content/uploads/2010/08/5-animes1.jpg" alt="" width="580" height="428" /></a></strong></p>
<p>Ideal theme for an anime website. Those people are really sweet.</p>
<h2><a target="_blank" href="http://newwpthemes.com/wordpress-theme/perfecta/">7. Perfecta</a></h2>
<p><strong><a target="_blank" href="http://newwpthemes.com/demo/Perfecta/"><img class="alignnone size-full wp-image-21731" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/6-perfecta1.jpg" alt="" width="580" height="431" /></a></strong></p>
<p>Perfect theme! Mostly for portals.<strong> </strong></p>
<p><strong> </strong></p>
<h2><a target="_blank" href="http://wordpress.site5.net/simplo/">8. Simplo</a></h2>
<p><a target="_blank" href="http://wordpress.site5.net/simplo/"><img class="alignnone size-full wp-image-21733" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/8-simplo.jpg" alt="" width="580" height="464" /></a></p>
<p>Simple 2-column theme. White background.</p>
<h2><a target="_blank" href="http://themes.bavotasan.com/our-themes/basic-themes/magazine-basic/">9. Magazine Basic</a></h2>
<p><strong><a target="_blank" href="http://demos.bavotasan.com/"><img class="alignnone size-full wp-image-21738" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/magazine-basic.jpg" alt="" width="580" height="409" /></a></strong></p>
<p>As the name suggests, a great theme for magazines.</p>
<h2><a target="_blank" href="http://siteeditor.net/akylas">10.Akylas</a></h2>
<p><strong><a target="_blank" href="http://siteeditor.net/akylas-theme/demo"><img class="alignnone size-full wp-image-22188" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/10-akylas.jpg" alt="" width="580" height="496" /></a></strong></p>
<h2><a target="_blank" href="http://themejam.com/wordpress-themes/gadget/">11. Gadget</a></h2>
<p><a target="_blank" href="http://www.themejam.com/demo/gadget/wordpress/"><img class="alignnone size-full wp-image-22190" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/11-gadget1.jpg" alt="" width="580" height="449" /></a></p>
<h2><a target="_blank" href="http://wefunction.com/2009/02/free-theme-magazeen/">12. Magazeen</a></h2>
<p><a target="_blank" href="http://demo.wefunction.com/?wptheme=Magazeen"><img class="alignnone size-full wp-image-22193" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/12-magazeen.jpg" alt="" width="580" height="386" /></a></p>
<h2><a target="_blank" href="http://wordpress.org/extend/themes/hybrid">13. Hybrid Theme</a></h2>
<p><a target="_blank" href="http://themehybrid.com/demo/hybrid/index.php?wptheme=Hybrid"><img class="alignnone size-full wp-image-22194" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/13-hybrid.jpg" alt="" width="580" height="620" /></a></p>
<h2><a target="_blank" href="http://www.press75.com/#features-sb">14. Side Blog</a></h2>
<p><a target="_blank" href="http://www.press75.com/themes/side-blog-theme-demo/"><img class="alignnone size-full wp-image-22195" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/14-side-blog.jpg" alt="" width="580" height="357" /></a></p>
<h2><a target="_blank" href="http://www.press75.com/#features-sf">15. The Seven Five</a></h2>
<p><a target="_blank" href="http://www.press75.com/themes/seven-five-theme-demo/"><img class="alignnone size-full wp-image-22196" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/15-the-seven-five.jpg" alt="" width="580" height="482" /></a></p>
<h2><a target="_blank" href="http://www.aquoid.com/news/themes/suffusion/">16. Suffusion</a></h2>
<p><a target="_blank" href="http://www.aquoid.com/news/themes/suffusion/"><img class="alignnone size-full wp-image-22197" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/16-suffusion.jpg" alt="" width="580" height="334" /></a></p>
<h2><a target="_blank" href="http://www.woothemes.com/2010/06/themorningafter/">17. The Morning After</a></h2>
<p><a target="_blank" href="http://www.woothemes.com/2010/06/themorningafter/"><img class="alignnone size-full wp-image-22198" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/17-the-morning-after.jpg" alt="" width="580" height="442" /></a></p>
<h2><a target="_blank" href="http://www.paddsolutions.com/wordpress-theme-oxygenous/">18. Oxygenous</a></h2>
<p><a target="_blank" href="http://www.paddsolutions.com/wpmag/oxygenous"><img class="alignnone size-full wp-image-22199" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/18-oxygenous.jpg" alt="" width="580" height="454" /></a></p>
<h2><a target="_blank" href="http://www.wpcorner.com/orsted-theme/">19. Orsted Theme</a></h2>
<p><a target="_blank" href="http://www.wpcorner.com/demo/index.php?wptheme=Orsted+Theme"><img class="alignnone size-full wp-image-22200" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/19-orsted.jpg" alt="" width="580" height="475" /></a></p>
<h2><a target="_blank" href="http://www.wpcorner.com/ceres-theme/">20. Ceres Theme</a></h2>
<p><a target="_blank" href="http://www.wpcorner.com/demo/index.php?wptheme=Ceres+Theme"><img class="alignnone size-full wp-image-22201" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/20-ceres.jpg" alt="" width="580" height="438" /></a></p>
<h2><a target="_blank" href="http://www.wpcorner.com/polaris-theme/">21. Polaris Theme</a></h2>
<p><a target="_blank" href="http://www.wpcorner.com/demo/index.php?wptheme=Polaris+Theme"><img class="alignnone size-full wp-image-22203" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/21-polaris.jpg" alt="" width="580" height="431" /></a></p>
<h2><a target="_blank" href="http://www.simplywp.net/2010/07/14/dimenzion-wordpress-theme/">22. Dimenzion</a></h2>
<p><a target="_blank" href="http://demo.simplywp.net/?wptheme=dimenzion"><img class="alignnone size-full wp-image-22204" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/22-dimenzion.jpg" alt="" width="580" height="458" /></a></p>
<h2><a target="_blank" href="http://www.theme-junkie.com/demo/channel/">23. Channel</a></h2>
<p><a target="_blank" href="http://www.theme-junkie.com/demo/channel/"><img class="alignnone size-full wp-image-22205" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/23-channel.jpg" alt="" width="580" height="458" /></a></p>
<h2><a target="_blank" href="http://www.theme-junkie.com/themes/fashionpress/">24. Fashion Press</a></h2>
<p><a target="_blank" href="http://www.theme-junkie.com/demo/fashionpress/"><img class="alignnone size-full wp-image-22206" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/24-fashionpress.jpg" alt="" width="580" height="452" /></a></p>
<h2><a target="_blank" href="http://www.wpcorner.com/meissa-theme/">25. Meissa</a></h2>
<p><a target="_blank" href="http://www.wpcorner.com/demo/index.php?wptheme=Meissa+Theme"><img class="alignnone size-full wp-image-22207" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/25-meissa.jpg" alt="" width="580" height="466" /></a></p>
<h2><a target="_blank" href="http://www.wpcorner.com/capella-theme/">26. Capella Theme</a></h2>
<p><a target="_blank" href="http://www.wpcorner.com/demo/index.php?wptheme=Capella+Theme"><img class="alignnone size-full wp-image-22208" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/26-capellatheme.jpg" alt="" width="580" height="470" /></a></p>
<h2><a target="_blank" href="http://www.paddsolutions.com/wordpress-theme-carbonified/">27. Carbonified</a></h2>
<p><a target="_blank" href="http://www.paddsolutions.com/wpmag/carbonified"><img class="alignnone size-full wp-image-22209" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/27-carbonified.jpg" alt="" width="580" height="422" /></a></p>
<h2><a target="_blank" href="http://www.theme-junkie.com/themes/channel/">28. Structure</a></h2>
<p><a target="_blank" href="http://structuretheme.com/demo/"><img class="alignnone size-full wp-image-22210" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/28-structure.jpg" alt="" width="580" height="440" /></a></p>
<h2><a target="_blank" href="http://graphpaperpress.com/themes/mansion/">29. Mansion</a></h2>
<p><a target="_blank" href="http://demo.graphpaperpress.com/mansion/"><img class="alignnone size-full wp-image-22211" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/29-mansion.jpg" alt="" width="580" height="377" /></a></p>
<h2><a target="_blank" href="http://digitalnature.ro/projects/mystique/">30. Mistique</a></h2>
<p><a target="_blank" href="http://wp.digitalnature.eu/mystique/"><img class="alignnone size-full wp-image-22212" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/30-mistique.jpg" alt="" width="580" height="466" /></a></p>
<h2><a target="_blank" href="http://www.paddsolutions.com/wordpress-theme-boronic/">31. Boronic</a></h2>
<p><a target="_blank" href="http://www.paddsolutions.com/wpmag/boronic/"><img class="alignnone size-full wp-image-22213" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/31-boronis.jpg" alt="" width="580" height="368" /></a></p>
<h2><a target="_blank" href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">32. Graphene</a></h2>
<p><img class="alignnone size-full wp-image-22214" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/32-graphene.jpg" alt="" width="580" height="543" /></p>
<p>(screenshots provided instead of demo, click on the Theme Homepage to learn more)</p>
<h2><a target="_blank" href="http://themedemo.pmnova.com/2010-07-29-new-theme-gold-and-peach/">33. Gold and Peach</a></h2>
<p><a target="_blank" href="http://themedemo.pmnova.com/?preview_theme=Gold_and_Peach"><img class="alignnone size-full wp-image-22215" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/33-gold-and-peach.jpg" alt="" width="580" height="501" /></a></p>
<h2><a target="_blank" href="http://calotropis.itx.web.id/">34. Calotropis</a></h2>
<p><a target="_blank" href="http://calotropis.itx.web.id/"><img class="alignnone size-full wp-image-22216" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/34-calotropis.jpg" alt="" width="580" height="395" /></a></p>
<p>(the site itself is in the theme)</p>
<h2><a target="_blank" href="http://code.google.com/p/wp-constructor/">35. Constructor</a></h2>
<p><a target="_blank" href="http://wp-themes.com/constructor/"><img class="alignnone size-full wp-image-22217" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/35-constructor.jpg" alt="" width="580" height="447" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/free-wordpress-3-0-ready-themes/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Improving the Performance of your WordPress Site: Part 1</title>
		<link>http://www.1stwebdesigner.com/wordpress/improve-performance-wordpress/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/improve-performance-wordpress/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 10:00:21 +0000</pubDate>
		<dc:creator>DarrenM</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Optimisation]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[w3 cache]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=20065</guid>
		<description><![CDATA[Throughout this guide  I’ll be showing you how to improve the overall performance of your  WordPress site. This main elements of your site we’ll be looking at are  your theme’s code, and your database, site performance is something you  can spend countless hours working on. Though a few smart decisions and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/improve-performance-wordpress/"><img class="size-thumbnail wp-image-21125 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/thumb1-150x150.png" alt="" width="150" height="150" /></a>Throughout this guide  I’ll be showing you how to improve the overall performance of your  WordPress site. This main elements of your site we’ll be looking at are  your theme’s code, and your database, site performance is something you  can spend countless hours working on. Though a few smart decisions and  half an hour can make a massive difference. I’ll also point out none of  this is WordPress specific, though it is written with WordPress in mind  all these changes can be used on nearly any CMS.<span id="more-20065"></span></p>
<h2>Example Site ZOMG How</h2>
<p>As an example  throughout this article I’ll be using my gaming site <a target="_blank" href="http://zomghow.com/">ZOMG How</a>.<br />
Its running WordPress  3, using <a target="_blank" href="http://www.elegantthemes.com/gallery/thesource/">The Source</a> with no modifications, as its theme. I’ve also  disabled plugins while working on it.</p>
<p><img class="aligncenter size-full wp-image-21117" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/zomghow.png" alt="" width="560" height="226" /></p>
<p>Heres the sites stats before I do any work to  the site. Though I’ll mention the theme is a well coded, and the  hosting is really great. <a target="_blank" href="http://www.blacknight.com/">Blacknight’s</a> hosting and support is 1st class (Author&#8217;s personal opinion. We don&#8217;t endorse it. Check out <a target="_blank" href="http://eleven2.com">Eleven2</a> which we recommend for all your hosting needs ).</p>
<h3>Stats Before</h3>
<p><strong>Average loading time: </strong>3.3+ seconds<strong><br />
Site size:</strong> 320+ kb</p>
<p>Not a slow site then, some might even call it a fast site! Though lets see how much this can be improved on.</p>
<p><strong>Stats after</strong></p>
<p><strong>Loading time: </strong>1.2 seconds (quickest tested)</p>
<p><strong>Site size: </strong>&gt;220kb<strong><br />
</strong></p>
<p><em>Note:<br />
</em></p>
<p><em>I haven&#8217;t shown exactly what improvement each tweak made to my site, as it was too hard to be exactly sure as I noticed there were too many variables. Sometimes it seemed tweaks actually slowed the site down, when really it was a family member using the internet connection for downloads. Or even the amount of traffic the site was getting. This is probably a sign my sites out reaching its hosting. I&#8217;ll be covering what do with regards to databases in Part 2.</em></p>
<h2>Hosting</h2>
<p>As we are aiming to  cut down the loading time of your blog, these tips will work alot better  if you get quality hosting got your blog, as one of the most important  factors in a sites performance is its hosting. Free hosts are quite easy  to find now, and though the thought of free hosting may seem great, but  your visitors wont thank you for having a slow site.</p>
<p>The  hosting plan you decide to go for should cover the amount of traffic  you expect to get, though don&#8217;t aim for something our of your budget.  though eve with a relatively small budget its possible to find quality  hosting for around 5 Euro a month. Though the playing field seems level  when it comes to hosting you do need to be careful when deciding who to  host your site with.</p>
<p>Important factors when  choosing your host, and hosting plan:</p>
<p>Make sure it supports  WordPress</p>
<p>Aim for hosting with the following features  as standard.</p>
<ul>
<li>PHP 5 , four will do though 5 is the newer  and better supported version.</li>
<li>MySQL</li>
<li>.htaccess allows you  to have added control over how your site runs.</li>
<li>cron jobs</li>
</ul>
<p>Decent  bandwidth. 100GB is more than enough, though again unlimited isn&#8217;t  necessarily good. As with storage.</p>
<p>Make sure your hosting  plan has enough databases for the work you plan to carry out online,  though a hosting plan with unlimited databases can be a bad idea as its  more open to abuse from other people on the same server as you.  Therefore slowing down or even crashing your site. Be sure to read up  reviews on the hosting company too (though watch out for “review” with  affiliate links). good fast support is always  useful for when you’re  having a problem with your hosting. Ask around for people&#8217;s thoughts on  certain hosts, they’ll more than likely steer you in the right  direction!</p>
<p>Something  else to note is the uptime of your host: <a target="_blank" href="http://1stwebdesigner.com/author/saad">Saad</a> has written a great  article on<a target="_blank" href="../resources/best-free-website-monitoring/"> How to monitor  your sites uptime</a></p>
<p>You may also be  interested in setting up a CDN ( content delivery network) which stores  your static files, (images, css) on different servers around the world.  So depending on where a visitor is, the files are loaded from  the  server closed to them.</p>
<h2>Remove un needed Plugins</h2>
<p>Remove any plugins  that are unnecessary, a plugin should add to your site and benefit you  or your readers. If your blog doesn&#8217;t need a certain plugin remove it,  and  delete it too. Its only slowing down your site.</p>
<h2>W3 Cache</h2>
<p><em>Though I&#8217;ve included this very near to the top of the post (For anyone one who is too lazy to read the whole post ), I do recommend completing the other steps first, as they ensure your site is well-built from the ground up. And then this plugin will further increase your performance </em></p>
<p><em><br />
</em></p>
<p>W3 Cache has become an  increasingly popular plugin in recent times, seemly replacing WP super Cache on many big sites too. You more than likely  already have it installed on your site too! thought be sure to spend time  tweaking its options as they can make a massive difference in the  loading of your site, as well as the strain on your server.</p>
<p><img class="aligncenter size-full wp-image-21119" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/w3cache.png" alt="" width="560" height="290" /></p>
<p>This awesome plugin by  Frederick will actually do alot of the work involved in speeding up your  site too. The features list is too long to post without having the post  overwhelmed by it too! So I’ll only run through the basic functions of  it.  You can find the full feature list <a target="_blank" href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/">here</a></p>
<ul>
<li>Caching of (minified  and compressed) pages and posts in memory or on disk</li>
<li>Caching of (minified  and compressed) CSS and JavaScript in memory, on disk or on CDN</li>
<li>Caching of RSS  (comments, page and site) feeds in memory or on disk</li>
<li>Caching of search  results pages (i.e. URIs with query string variables) in memory or on  disk</li>
<li>Caching of database objects in memory</li>
</ul>
<p>Though this plugin  covers alot of what you need to do. I think it best to have your site  optimised as much as possible, as well as using W3 Cache.</p>
<h2>Optimising your sites  code</h2>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/yslow.png"><img class="aligncenter size-full wp-image-21120" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/yslow.png" alt="" width="598" height="226" /></a></p>
<p>For the next few parts  the following addons (sometimes known as extensions) will prove invaluable if you want to shave those seconds, ans possibly milliseconds  off your loading times.</p>
<ul>
<li><a target="_blank" href="http://getfirefox.com/">Firefox</a> you’ll need this for the addons I’ll  recommend you to use</li>
<li><a target="_blank" href="http://getfirebug.com/">Firebu</a>g though you’ll probably already have  this if you develop with Firefox</li>
<li><a target="_blank" href="http://code.google.com/speed/page-speed/">Page Speed</a> From Google which  allows you to analyze how long it takes the files that make up your site  to load.</li>
<li><a target="_blank" href="http://developer.yahoo.com/yslow/">YSlow</a> Another great tool,  from Yahoo this time, it&#8217;s quite like Page Speed</li>
</ul>
<p>It&#8217;s a good idea to  familiarise yourself with these great tools as they’ll be a great help  improving your site performance and benchmarking the results.</p>
<h2>Cut down on server  requests</h2>
<p>The  overall idea of this is by reducing the amount of http requests and  packet transfers you’re site will load quicker. There is a massive  amount of ways to do this, I’ll cover a few of them in this post.</p>
<p>Instead of having 5  css files at 10kb each, it&#8217;s better to have just the one file weighing in  at 50kb. Though the amount of data remains the same, the amount of http  requests has been reduced by 5. This may not seem like a big  improvement, but as the downloading of each file (and every file for  your site) include a setup and teardown phase this really reduces  loading times.</p>
<p>When  you also take into consideration browsers only down load a certain  amount of files from one domain at a time (by default I believe its 2  from both FireFox and Internet Explorer) it means that instead of  downloading other files your visitors are busying going through all your  css and javascript files. Its something to take into consideration, as  it can make a massive different to your site.</p>
<h3>Optimising CSS &amp;  JavaScript</h3>
<p>With  the above informatinon in mind aim to lower the amount of css and  javascript files your theme has, for example include your reset.css in  your style.css, and for wp-page-navi add it to your style.css too.</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/css.png"><img class="aligncenter size-full wp-image-21122" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/css.png" alt="" width="513" height="191" /></a></p>
<p>Some plugins add css  or JavaScript to your theme  It&#8217;s a good idea to filter these  files out and add them to your own style.css or a javascript file.</p>
<p>Justin Tadlock has written a  useful guide on how to disable scripts and styles belonging to many plugins.</p>
<p><a target="_blank" href="http://">http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles</a></p>
<p>You can also minimise  you css with <a target="_blank" href="http://www.cssdrive.com/">CSS Drive</a>’s <a target="_blank" href="http://www.cssdrive.com/index.php/main/csscompressor/">CSS Compressor</a> to lower your style  sheets size by that extra bit. It all adds up!</p>
<h2>Images</h2>
<p>This includes images  both in the themes design, and any you use in your posts.</p>
<p><strong>Image optimisation</strong><br />
Yahoo has a great  image optimisation service called Smush.it which optimising the size of  images without reducing their quality. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-smushit/">WP Smush.it </a>adds these services  via the smush.it API to WordPress</p>
<p><strong>Replace images with CSS</strong></p>
<p>With the rise in CSS3  we can now add alot of features to a design, that required images  before. Think such as shadows and gradients. I’ll quickly give you an  example of how to do each.</p>
<p><strong>Adding a gradient with css</strong></p>
<p>background:  -moz-linear-gradient(top, #0099ff 0%, #0066cc 100%);<br />
background:  -webkit-gradient(linear, left top, left bottom, from(#0099ff),  to(#0066cc));</p>
<p><strong>Adding box shadow with  css</strong></p>
<p>-webkit-box-shadow:  0px 2px 5px rgba(0,0,0,0.7);-moz-box-shadow: 0px 2px 5px  rgba(0,0,0,0.7);<br />
box-shadow: 0px 2px 5px rgba(0,0,0,0.7);</p>
<p><strong>CSS Sprites</strong></p>
<p>Depending on the  amount of images left in your sites design you may want to consider  using a css sprite which will further decrease the amount of http  requests when loading your site. Though this step does require alot of  work. <a target="_blank" href="http://spriteme.org/">Sprite Me</a> does make this job  alot easier though.</p>
<p>After reading this you&#8217;re now on your way to a faster website!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/improve-performance-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to add Backwards Compatible WordPress 3.0 Features to Your Theme</title>
		<link>http://www.1stwebdesigner.com/wordpress/how-to-add-backwards-compatible-wordpress-3-0-features-to-your-theme/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/how-to-add-backwards-compatible-wordpress-3-0-features-to-your-theme/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 10:00:57 +0000</pubDate>
		<dc:creator>ThemeSheep</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress 3.0 custom background]]></category>
		<category><![CDATA[wordpress 3.0 menus]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=20459</guid>
		<description><![CDATA[If you&#8217;re looking for a way to take full advantage of the new WordPress 3.0 custom menu and background features, then keep reading.  Learn how to integrate the WordPress 3.0 custom menu and make it backwards compatible for older WordPress versions.  Also learn how to implement the new &#8220;header background image&#8221;; all with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/how-to-add-backwards-compatible-wordpress-3-0-features-to-your-theme/"><img class="alignleft size-full wp-image-20535" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/backwards-compatible-wordpress-3.0-menu-nav-background.jpg" alt="backwards compatible wordpress 3.0 menu nav background" width="150" height="150" /></a>If you&#8217;re looking for a way to take full advantage of the new WordPress 3.0 custom menu and background features, then keep reading.  Learn how to integrate the WordPress 3.0 custom menu and make it backwards compatible for older WordPress versions.  Also learn how to implement the new &#8220;header background image&#8221;; all with detailed examples, codes, and pictures.<span id="more-20459"></span></p>
<h3>Add WordPress 3.0 Menu Navigation (and make it backwards compatible!)</h3>
<p>I&#8217;ve read a couple different tutorials on how to implement the new menu navigation, but none of them have been detailed or shown how to write backwards compatible code.  So let&#8217;s do this right.  Let&#8217;s start with the code, this should be pasted inside the &#8220;functions.php&#8221; file inside of open PHP code.</p>
<pre class="brush: php;">
if (function_exists('wp_nav_menu')) {
add_action( 'init', 'register_my_menus' );
function register_my_menus() {
register_nav_menus(
array(
'Your-Menu' =&gt; __( 'Your Menu' ),
)
);
}
}
</pre>
<p>First, we have WordPress check to see if the function &#8220;wp_nav_menu&#8221; exists.  We do this essentially to check if they&#8217;re using a WordPress version that supports the custom menu function, 3.0+.  If the function does exist, the rest of the code registers your new menus.  This makes your code backwards compatible for people still using older versions of WordPress.  Although there are more steps you have to take to make your theme completely backwards compatible, but I&#8217;ll cover those steps in a second.</p>
<p>Next, if you look at the line that says &#8216;Your-Menu&#8217; =&gt; __( &#8216;Your Menu&#8217; ),  this is where you will assign the name for your menu.  You can also register multiple menus for different areas in your WordPress theme.  For instance, if you have a &#8220;page menu&#8221; and a &#8220;category menu&#8221;, you would want to register two separate menus.  This is done by simply duplicating the &#8220;Your-Menu&#8221; line, here&#8217;s an example:</p>
<pre class="brush: php;">
if (function_exists('wp_nav_menu')) {
add_action( 'init', 'register_my_menus' );
function register_my_menus() {
register_nav_menus(
array(
'page-menu' =&gt; __( 'Page Menu' ),
'category-menu' =&gt; __( 'Category Menu' ),
)
);
}
</pre>
<p>As you can see from this example, we&#8217;ve registered two different menus.  Now, when a user logs into their wp-admin page and clicks on &#8220;appearance / menus&#8221; they&#8217;ll see this box, where they can create and add menus to each registered and named menu location.</p>
<p><img class="alignnone size-full wp-image-20530" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/register-multiple-wordpress-menus.jpg" alt="register multiple=" /></p>
<h3>How To Integrate Custom Navigation Menus Inside Your WordPress Theme</h3>
<p>In the following example, the code will first check if the user is using WordPress 3.0, if so it will use the &#8220;Page-Menu&#8221; 3.0 menu that we&#8217;ve registered previously in the functions.php.  If not, it will default to the standard &#8220;wp_list_pages&#8221; syntax. You can also use this for a category bar by replacing &#8220;wp_list_pages&#8221; with &#8220;wp_list_categories&#8221;.  Place this bit of code inside your theme wherever you want your specific menu(s) to appear:</p>
<pre class="brush: php;">
if(function_exists('wp_nav_menu')){
wp_nav_menu( array( 'theme_location' =&gt; 'Page-Menu', 'container_class' =&gt; 'menuclass') );}
else{
wp_list_pages('title_li=&amp;depth=0');
}
</pre>
<p>If you look at the area of code that says &#8216;container_class&#8217; =&gt; &#8216;menuclass&#8217;, this is where you can set the CSS class ( &#8220;menuclass&#8221; in this case ) for the menu.</p>
<p>Using this code will ensure that you&#8217;ll have custom menus for WP 3.0 + users, and default to older WordPress standards if they&#8217;re using a sub 3.0 version.  This is essential for anyone planning to release a theme to the public.</p>
<h3>Adding Custom Background Images And Colors To Your Theme</h3>
<p><img class="alignnone size-full wp-image-20538" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/custom-background-wordpress-3.0-feature.jpg" alt="custom background wordpress 3.0 feature" width="570" height="582" /></p>
<p>The background feature in WordPress 3.0 lets you easily change the hexadecimal color of the background of your theme, or upload an image as the background.  It also allows you to set how the background image is displayed.  For instance, you can set the image to repeat horizontally, vertically, align left, center, right, scroll or fixed.  This new functionality is awesome and very easy to implement into your theme.  This code is fully backwards compatible with older versions of WordPress.  If you were to just use  &#8220;add_custom_background();&#8221; then your theme will error with any other version than 3.0.  Add this code into your functions.php</p>
<pre class="brush: php;">
if ( function_exists('add_custom_background') ) {
add_custom_background();
}
</pre>
<p>That&#8217;s it!  Now when you log in, if you&#8217;re using 3.0+, you&#8217;ll see a &#8220;background&#8221; link under the Appearance tab.  I hope you can take full advantage of these new WordPress 3.0 features, making them fully functional AND backwards compatible for all of your users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/how-to-add-backwards-compatible-wordpress-3-0-features-to-your-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>35 Security Plugins to Make Your Wordpress Bulletproof</title>
		<link>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:00:58 +0000</pubDate>
		<dc:creator>Daniels Mekšs</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=20455</guid>
		<description><![CDATA[WordPress is the most popular blogging platform today. It’s being used by thousands of people all around the world. But because of the popularity, it’s getting more attention by hackers and spammers too. WordPress is very secure by itself, but there’s never too much ascertainable.
For simple users,who don&#8217;t code a lot, plugins is the best [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/" target="_self"><img class="alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/preview-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Preview-wordpress-security-tools-tips-plugins" /></a>WordPress is the most popular blogging platform today. It’s being used by thousands of people all around the world. But because of the popularity, it’s getting more attention by hackers and spammers too. WordPress is very secure by itself, but there’s never too much ascertainable.</p>
<p>For simple users,who don&#8217;t code a lot, plugins is the best way to secure your blog. They’re free, easily usable and safe. This post assembles 35 best plugins to make your blog bulletproof. They’re each devised for different purposes, so you will get the best protection from each field.<span id="more-20455"></span></p>
<h2>Secure Your Login</h2>
<h2>1. <a target="_blank" href="http://wordpress.org/extend/plugins/semisecure-login-reimagined/" target="_blank">Semisecure Login Reimagined</a></h2>
<p>Semisecure Login Reimagined increases the security of the login process by using a combination of public and secret-key encryption to encrypt the password on the client-side when a user logs in. JavaScript is required to enable encryption. It is most useful for situations where SSL is not available, but the administrator wishes to have some additional security measures in place without sacrificing convenience.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/semisecure-login-reimagined/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/semisecure-login-reimagined-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Semisecure-login-reimagined-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a target="_blank" href="http://wordpress.org/extend/plugins/stealth-login/" target="_blank">Stealth Login</a></h2>
<p>This plugin allows you to create custom URLs for logging in, logging out, administration and registering for your WordPress blog. Instead of advertising your login URL on your homepage, you can create a URL of your choice that can be easier to remember than wp-login.php, for example you could set your login URL to <a target="_blank">http://www.myblog.com/login</a> for an easy way to login to your website.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/stealth-login/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/stealth-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Stealth-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a target="_blank" href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank">Login LockDown</a></h2>
<p>Login LockDown records the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/login-lockdown/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/lockdown-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Lockdown-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a target="_blank" href="http://wordpress.org/extend/plugins/chap-secure-login/" target="_blank">Chap Secure Login</a></h2>
<p>Whenever you try to login into your website, you can use this plugin to transmit your password encrypted. The encryption process is done by the Chap protocol. By activating the Chap Secure Login plugin, the only information transmitted unencrypted is the username, password is hidden with a random number (nonce) generated by the session &#8211; and opportunely transformed by the MD5 algorithm. In the first login there will be an error, but don&#8217;t worry is only a technical error. Indeed in the next login&#8217;s operation, if the values are correct, there will not be errors.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/chap-secure-login/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/chap-secure-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Chap-secure-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Admin Area</h2>
<h2>1. <a target="_blank" href="http://wordpress.org/extend/plugins/admin-ssl-secure-admin/" target="_blank">Admin SSL</a></h2>
<p>Admin SSL secures login page, admin area, posts, pages &#8211; whatever you want &#8211; using Private or Shared SSL. Once you have activated the plugin, you have to go to the Admin SSL config page to enable SSL.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/admin-ssl-secure-admin/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/admin-ssl-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Admin-ssl-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Database</h2>
<h2>1. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup</a></h2>
<p>WP-DB-Backup allows you easily to back up your core WordPress database tables. You may also backup other tables in the same database.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp-db-backup/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/databse-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Databse-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a target="_blank" href="http://wordpress.org/extend/plugins/remote-database-backup/" target="_blank">Remote Database Backup</a></h2>
<p>This plugin creates SQL dumps of your WordPress database. It is based on the WordPress Database Backup plugin (<a target="_blank" href="http://www.ilfilosofo.com/blog/wp-db-backup">http://www.ilfilosofo.com/blog/wp-db-backup</a>) &#8211; but it removes some of the security restrictions in the plugin to enable automated remote backups. You still need the admin user name and password to do a remote backup.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/remote-database-backup/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/remote-databse-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Remote-databse-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank">WP-DB Manager</a></h2>
<p>This plugin allows you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries. It supports automatic scheduling of backing up and optimizing of database.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp-dbmanager/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/databse-manager-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Databse-manager-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a target="_blank" href="http://wordpress.designpraxis.at/plugins/backupwordpress/" target="_blank">BackUpWordPress</a></h2>
<p>BackUpWordPress is a backup &amp; recovery suite for your WordPress website. This plugin allows you to back up database tables as well as files and comes with a rich set of options.</p>
<p><a target="_blank" href="http://wordpress.designpraxis.at/plugins/backupwordpress/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a target="_blank" href="http://lastnightsdesigns.com/?page_id=264" target="_blank">Wordpress 1 Click EZ Backup</a></h2>
<p>EZ Backup has been turned into a simple one click operation. Click the button and watch your files and database backup be created. You can create a backup of all your webspace files or backup just your wp-content folder all from this one plugin. Unlike the Full EZ Backup plugin this one does not require any special information such as usernames or passwords etc. This plugin costs $5.</p>
<h2>6. <a target="_blank" href="http://wordpress.org/extend/plugins/myeasybackup/" target="_blank">myEASYbackup</a></h2>
<p>This plugin allows you to back up, restore, migrate your WordPress installation, both files and mySQL tables with a single click. When performing a backup, myEASYbackup creates a compressed data set file that can be stored outside the WordPress installation directory. A list of all data sets on the server is also logged in the admin area.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/myeasybackup/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/my-easy-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="My-easy-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Spam</h2>
<h2>1. <a target="_blank" href="http://wordpress.org/extend/plugins/antispam-bee/" target="_blank">Antispam Bee</a></h2>
<p>AntispamBee protects blogs from digital rubbish. It is made up of sophisticated techniques and analyzes comments including pings. Also, for reasons of data privacy, the use of AntispamBee is a safe solution, as it is anonymous and registration-free.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/antispam-bee/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/antispam-bee-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Antispam-bee-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a target="_blank" href="http://wordpress.org/extend/plugins/nospamnx/" target="_blank">NoSpamNX</a></h2>
<p>NoSpamNX is the successor of Yawasp (Yet Another WordPress antispam plugin) and is a plugin to protect against automated comment spam (spambots). While Yawasp changed the names of the form fields in the comment template, NoSpamNX works without these modifications, but is equally effective. By eliminating the need for modifications the form field need maximum compatibility with other WordPress plugins or browser is ensured.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/nospamnx/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/no-spam-nx-wordpress-security-tools-tips-plugins.jpg" border="0" alt="No-spam-nx-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a target="_blank" href="http://akismet.com/" target="_blank">Akismet</a></h2>
<p>Automattic Kismet (Akismet for short) is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you never have to worry about spam again.</p>
<p><a target="_blank" href="http://akismet.com/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/akismet-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Akismet-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a target="_blank" href="http://wordpress.org/extend/plugins/math-comment-spam-protection/" target="_blank">Math Comment Spam Protection</a></h2>
<p>Asks the visitor making the comment to answer a simple math question. This is intended to prove that the visitor is a human being and not a spam robot. Example of such question: What is the sum of 2 and 9?</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/math-comment-spam-protection/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/math-comment-spam-protection-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Math-comment-spam-protection-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a target="_blank" href="http://wordpress.org/extend/plugins/defensio-anti-spam/" target="_blank">Defensio Anti-Spam</a></h2>
<p>Defensio is an advanced spam filtering web service that learns and adapts to your behaviors and those of your readers. Advanced features such as support for OpenID, detailed statistics, charts, RSS feed of our comments (innocent and spam) and counter widget are also available.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/defensio-anti-spam/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/defensio-anti-spam-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Defensio-anti-spam-wordpress-security-tools-tips-plugins" /></a></p>
<h2>6. <a target="_blank" href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/" target="_blank">SI CAPTCHA Anti-Spam</a></h2>
<p>Adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, login, or all. In order to post comments or register, users will have to type in the code shown on the image. This prevents spam from automated bots. Adds security. Works great with Akismet. Also is fully WP, WPMU, and BuddyPress compatible.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/captcha-anti-spam-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Captcha-anti-spam-wordpress-security-tools-tips-plugins" /></a></p>
<h2>7. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-recaptcha/" target="_blank">reCAPTCHA</a></h2>
<p>reCAPTCHA is an anti-spam method originating from <a target="_blank" href="http://www.cmu.edu/index.shtml" target="_blank">Carnegie Mellon University</a> which uses CAPTCHAs in a genius way. Instead of randomly generating useless characters which users grow tired of continuously typing in, risking the possibility that spammers will eventually write sophisticated spam bots which use OCR libraries to read the characters, reCAPTCHA uses a different approach.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp-recaptcha/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/recaptcha-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Recaptcha-wordpress-security-tools-tips-plugins" /></a></p>
<h2>8. <a target="_blank" href="http://perishablepress.com/press/2010/07/14/blackhole-bad-bots/" target="_blank">Blackhole</a></h2>
<p>Blackhole is a trap for bad bots. The concept is simple: include a hidden link to a robots.txt-forbidden directory somewhere on your pages. Bots that ignore or disobey your robots rules will crawl the link and fall into the trap, which then performs a WHOIS Lookup and records the event in the blackhole data file. Once added to the blacklist data file, bad bots immediately are denied access to your site.</p>
<p><a target="_blank" href="http://perishablepress.com/press/2010/07/14/blackhole-bad-bots/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/blackhole-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Blackhole-wordpress-security-tools-tips-plugins" /></a></p>
<h2>9. <a target="_blank" href="http://wordpress.org/extend/plugins/invisible-defender/" target="_blank">Invisible Defender</a></h2>
<p>This plugin protects registration, login and comment forms from spambots by adding two extra fields hidden by CSS. This approach gave me 100% anti-spam protection on one of my sites.</p>
<h2>Other</h2>
<h2>1. <a target="_blank" href="http://wordpress.org/extend/plugins/secure-wordpress/" target="_blank">Secure WordPress</a></h2>
<p>Little help to secure your WordPress installation. This plugin removes error information on login page, adds index.html to plugin directory, removes the wp-version, except in admin area.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/secure-wordpress/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/secure-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Secure-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP Security Scan</a></h2>
<p>This plugin will scan your WordPress installation for security vulnerabilities and it will suggest some corrective actions.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp-security-scan/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/security-scan-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Security-scan-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a target="_blank" href="http://wordpress.org/extend/plugins/askapache-password-protect/" target="_blank">AskApache Password Protect</a></h2>
<p>This plugin doesn&#8217;t control WordPress or mess with your database, instead it utilizes fast, tried-and-true built-in Security features to add multiple layers of security to your blog. This plugin is specifically designed and regularly updated specifically to stop automated and unskilled attackers attempts to exploit vulnerabilities on your blog resulting in a hacked site.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/askapache-password-protect/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/ask-apache-password-protect-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Ask-apache-password-protect-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a target="_blank" href="http://wordpress.org/extend/plugins/tac/" target="_blank">TAC (Theme Authenticity Checker)</a></h2>
<p>TAC stands for Theme Authenticity Checker. Currently, TAC searches the source files of every installed theme for signs of malicious code. If such code is found, TAC displays the path to the theme file, the line number, and a small snippet of the suspect code. As of v1.3  TAC also searches for and displays static links.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/tac/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/theme-authenticity-checker-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Theme-authenticity-checker-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a target="_blank" href="http://wordpress.org/extend/plugins/http-authentication/" target="_blank">HTTP Authentication</a></h2>
<p>The HTTP Authentication plugin allows you to use existing means of authenticating people to WordPress. This includes Apache&#8217;s basic HTTP authentication module and many others.</p>
<h2>6. <a target="_blank" href="http://wordpress.org/extend/plugins/antivirus/" target="_blank">AntiVirus</a></h2>
<p>Viruses, worms and malware exist for WordPress and could easily attack your WordPress installation. AntiVirus for WordPress monitors malicious injections and warns you of any possible attacks. It also has multilingual support.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/antivirus/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/antivirusl-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Antivirus-wordpress-security-tools-tips-plugins" /></a></p>
<h2>7. <a target="_blank" href="http://wordpress.org/extend/plugins/secure-files/" target="_blank">Secure Files</a></h2>
<p>This plugin allows you to upload and download files from outside of your web document root for security purposes. It can be used to can restrict file downloads to users that are logged in, or have a certain user level.</p>
<h2>8. <a target="_blank" href="http://wordpress.org/extend/plugins/replace-wp-version/" target="_blank">Replace WP-Version</a></h2>
<p>Security your WordPress-Installation and eliminate or replace your wp-version and database-version on easy way with a small plugin. If you&#8217;re running an older version of WordPress, anyone can view source to see what attacks might work against your blog. This plugin replaces the WP-version with a random string &lt; WP 2.4 and eliminate WP-version &gt; WP 2.4.</p>
<h2>9. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-email-guard/" target="_blank">WP Email Guard</a></h2>
<p>WP Email Guard protects your email addresses included on any post or page from being crawled by spammers. It converts every email written within your post body into a JavaScript code, so the emails is readable and can be clicked by humans only. Spammers can&#8217;t crawl JavaScript.</p>
<h2>10. <a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-file-monitor/" target="_blank">WordPress File Monitor</a></h2>
<p>Monitors your WordPress installation for added/deleted/changed files. When a change is detected an email alert can be sent to a specified address.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-file-monitor/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/file-monitor-wordpress-security-tools-tips-plugins.jpg" border="0" alt="File-monitor-wordpress-security-tools-tips-plugins" /></a></p>
<h2>11. <a target="_blank" href="http://wordpress.org/extend/plugins/wp-dephorm/" target="_blank">WP Dephorm</a></h2>
<p>WP-Dephorm protects your users from the prying eyes of phorm. This is achieved by setting a cookie to opt out of the phorm information mining. Your blog viewers will not have their information stored and used in marketing campaigns whilst viewing your site.</p>
<h2>12. <a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-firewall/" target="_blank">WordPress Firewall</a></h2>
<p>This WordPress plugin investigates web requests with simple WordPress-specific heuristics to identify and stop most obvious attacks. There exist a few powerful generic modules that do this; but they&#8217;re not always installed on web servers, and difficult to configure.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-firewall/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/firewall-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Firewall-wordpress-security-tools-tips-plugins" /></a></p>
<h2>13. <a target="_blank" href="http://wordpress.org/extend/plugins/secure-contact-form/" target="_blank">Secure Contact</a></h2>
<p>SecureContact is a drop in form for users to contact you, based on the WP Contact Form plugin by Ryan Duff. It offers enhanced security by using captcha images.</p>
<h2>14. <a target="_blank" href="http://wordpress.org/extend/plugins/si-contact-form/" target="_blank">Fast and Secure Contact Form</a></h2>
<p>Fast and secure contact form for WordPress. This contact form lets your visitors send you a quick E-mail message. Blocks all common spammer tactics. Spam is no longer a problem. Includes a CAPTCHA and Akismet support. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent. Super customizable.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/si-contact-form/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/fast-secure-contact-form-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Fast-secure-contact-form-wordpress-security-tools-tips-plugins" /></a></p>
<h2>15. <a target="_blank" href="http://wordpress.org/extend/plugins/ultimate-security-check/" target="_blank">Ultimate Security Check</a></h2>
<p>The Ultimate Security Check plugin helps you identify security problems with your WordPress installation. It scans your blog for hundreds of known threats, then give you a security “grade” based on how well you have protected yourself.</p>
<h2>16. <a target="_blank" href="http://wordpress.org/extend/plugins/content-security-policy/" target="_blank">Content Security Policy</a></h2>
<p>Content Security Policy prevents content injection attacks by allowing admins to specify which sites they trust to serve JavaScript and other types of content in their site. Any content which is not explicitly allowed by the policy will be blocked from loading.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/content-security-policy/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/content-security-policy-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Content-security-policy-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Further Resources</h2>
<ul>
<li><a target="_blank" href="http://www.catswhocode.com/blog/top-10-ways-to-stop-spam-in-wordpress" target="_blank">Top 10 ways to stop spam in WordPress</a></li>
<li><a target="_blank" href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html" target="_blank">WordPress Security Tips and Hacks</a></li>
<li><a target="_blank" href="http://sixrevisions.com/wordpress/12-essential-security-tips-and-hacks-for-wordpress/" target="_blank">12 Essential Security Tips and Hacks for WordPress</a></li>
<li><a target="_blank" href="http://www.wpbeginner.com/wp-tutorials/11-vital-tips-and-hacks-to-protect-your-wordpress-admin-area/" target="_blank">13 Vital Tips and Hacks to Protect Your WordPress Admin Area</a></li>
<li><a target="_blank" href="http://speckyboy.com/2009/09/22/20-powerful-wordpress-security-plugins-and-some-tips-and-tricks/" target="_blank">20+ Powerful WordPress Security Plugins and Some Tips and Tricks</a></li>
<li><a target="_blank" href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12" target="_blank">11 Ways To Secure Your WordPress Blog</a></li>
<li><a target="_blank" href="http://www.problogdesign.com/wordpress/10-things-to-do-after-installing-wordpress/" target="_blank">10 Things to do After Installing WordPress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>50 Exclusive Commercial Business And Corporate Wordpress Themes</title>
		<link>http://www.1stwebdesigner.com/wordpress/commercial-business-wordpress-themes/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/commercial-business-wordpress-themes/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 10:00:02 +0000</pubDate>
		<dc:creator>Daniels Mekšs</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[commercial]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=20203</guid>
		<description><![CDATA[If you need a great, working WordPress theme, but don’t have or necessary skills, then these commercial themes are just for you. They’re completely ready to use, easy customizable and you are getting support too. This post assembles 50 good-looking corporate &#38; business themes, so if you want to start a commercial site, this is [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="ttp://www.1stwebdesigner.com/wordpress/commercial-business-wordpress-themes/" target="_self"><img class="alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/preview-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Preview-corporate-business-commercial-wordpress-themes" /></a>If you need a great, working WordPress theme, but don’t have or necessary skills, then these commercial themes are just for you. They’re completely ready to use, easy customizable and you are getting support too. This post assembles 50 good-looking corporate &amp; business themes, so if you want to start a commercial site, this is the best option available. You get quality stuff with modern features for cheap price. Plus almost every theme has a help documentation so you don’t need to be a WordPress geek to set up and use them.<span id="more-20203"></span></p>
<h2>1. <a target="_blank" href="http://themeforest.net/item/infocus-powerful-professional-wordpress-theme/85486?ref=1stwebdesigner" target="_blank">inFocus ($37)</a></h2>
<p>inFocus is a Powerful Professional Premium WordPress theme. It comes with an impressive fully customizable jQuery homepage slider with 3 different staging effects.</p>
<p>Whether you’re a WordPress pro or just a beginner, this theme has you covered. With a huge custom back-end area you have complete control over the look and style of your theme. Add images to your homepage slider, add as many sidebar widgets as you like, pull in your latest tweet from Twitter and much much more, all without having to touch a single line of code!</p>
<p>For your convenience inFoucs comes with 10 skins to choose from. Click on color name below for a full preview. Also below is a full list of inFocus’s features.</p>
<p>Some features:</p>
<ul>
<li>jQuery Slider</li>
<li>Custom Sidebars</li>
<li>Custom Widgets</li>
<li>Portfolio Gallery</li>
<li>Huge Tabbed Admin Area</li>
<li>Layered PSDs are included for easy modification</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/infocus-powerful-professional-wordpress-theme/85486?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/in-focus-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="In-focus-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>2. <a target="_blank" href="http://themeforest.net/item/display-3-in-1-business-portfolio-wordpress-/74542?ref=1stwebdesigner" target="_blank">Display 3 in 1 ($42)</a></h2>
<p>Display is a Wordpress theme, best suited for business and portfolio sites. It comes with a fantastic 3D Image slideshow that can be controlled from your backend with a custom tool. The theme has a huge wordpress custom backend (8 additional Admin Pages) that make customization of the theme easy for those who don’t know much about coding or Wordpress. Display also has 3 fantastic skins to choose from.</p>
<p>Some Features:</p>
<ul>
<li>Valid XHTM Strict1.0 and CSS 2 .1, tableless Design</li>
<li>Multiple Page templates</li>
<li>jQuery Support</li>
<li>Huge admin area to customize the theme from your Wordpress backend</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/display-3-in-1-business-portfolio-wordpress-/74542?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/display-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Display-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>3. <a target="_blank" href="http://themeforest.net/item/unite-wordpress-business-magazine-theme/90959?ref=1stwebdesigner" target="_blank">Unite ($37)</a></h2>
<p>Unite is a merger of crisp design and powerful communication. It takes a clean, organized approach to presenting content so it’s easier to find what you want.</p>
<p>This is a premium WordPress theme with 5 pre-made skins including a dark theme and textured background theme. The theme is easy to modify and ready to be up and running out of the box. The PSD files included have been customized to allow fast skinning.</p>
<p>Some features:</p>
<li>Valid XHTML Strict and CSS</li>
<li>2 slide show options: jQuery cycle and Gallery View</li>
<li>Superfish Dropdown Menu</li>
<li>PSD files included</li>
<li>5 pre-made skins</li>
<p><a target="_blank" href="http://themeforest.net/item/unite-wordpress-business-magazine-theme/90959?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/unite-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Unite-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>4. <a target="_blank" href="http://themeforest.net/item/luxury-wordpress-template/83220?ref=1stwebdesigner" target="_blank">Luxury ($32)</a></h2>
<p>Luxury is a clean, feature packed Wordpress theme designed to make your life easier. You can check out <a target="_blank" href="http://vimeo.com/9601119" target="_blank">video tutorial</a> how to set up custom home page.</p>
<p>Some features:</p>
<li>Multiple column layouts, controlled site wide or per post/page</li>
<li>Extensive Theme Settings Page</li>
<li>Custom Post Category Page</li>
<li>Multiple Home Layouts</li>
<li>Multiple Widget Areas</li>
<p><a target="_blank" href="http://themeforest.net/item/luxury-wordpress-template/83220?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/luxury-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Luxury-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>5. <a target="_blank" href="http://themeforest.net/item/prosto-business-portfolio-cms-wordpress-theme/102796?ref=1stwebdesigner" target="_blank">Prosto ($37)</a></h2>
<p>Prosto is a professional developed, clean designed Wordpress Theme with powerful CMS features. That is well suited for personal portfolio, blog, or any kind of business website. Easy to customize with extended admin panel for any kind of users. You can simply control your theme look and content without any special knowledge. Setup layout and choose custom sidebar for each page. Make unlimited portfolios in 3 different layouts that is give you a great flexibility and much more.</p>
<p>Some features:</p>
<ul>
<li>Unlimited sidebars</li>
<li>Unlimited portfolios</li>
<li>Translation ready</li>
<li>WP3 support</li>
<li>Layered .PSD files included</li>
<li>Customer support</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/prosto-business-portfolio-cms-wordpress-theme/102796?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/prosto-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Prosto-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>6. <a target="_blank" href="http://themeforest.net/item/centita-minimalist-business-wordpress-theme/82640?ref=1stwebdesigner" target="_blank">Centita ($27)</a></h2>
<p>Centita is Wordpress Theme with minimalist and elegant look that suitable for your professional corporate website, easy to customize and rich of features.</p>
<p>Some features:</p>
<ul>
<li>jQuery image slideshow</li>
<li>Widget ready</li>
<li>Built in AJAX contact form</li>
<li>Customizable homepage and sidebar area</li>
<li>7 layered PSD files included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/centita-minimalist-business-wordpress-theme/82640?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/centita-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Centita-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>7. <a target="_blank" href="http://themeforest.net/item/pandora-wordpress-business-portfolio/61703?ref=1stwebdesigner" target="_blank">Pandora ($32)</a></h2>
<p>Pandora is a WordPress Template, designed to promote anything from a corporate business to a portfolio site.</p>
<p>Some features:</p>
<ul>
<li>Valid XHTML Strict 1.0 and CSS 2 .1, table-less layout, 960 Grid System</li>
<li>jQuery Support</li>
<li>Code optimized for getting the top results in the Search Engines</li>
<li>WordPress related Features</li>
<li>All PSD files are included</li>
<li>Documentation Included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/pandora-wordpress-business-portfolio/61703?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/pandora-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Pandora-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>8. <a target="_blank" href="http://themeforest.net/item/hyperion-6-in-1/92484?ref=1stwebdesigner" target="_blank">Hyperion ($37)</a></h2>
<p>Hyperion is a clean and stylish Wordpress Theme well suited for any business, portfolio, blogger, or anyone needing a beautiful website. Hyperion comes with 3 jquery slideshows, many page templates, 3 widget areas, over 80 theme options, and 6 color styles, 2 custom widgets for your Twitter feed and Flickr images.</p>
<p><a target="_blank" href="http://themeforest.net/item/hyperion-6-in-1/92484?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/hyperion-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Hyperion-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>9. <a target="_blank" href="http://themeforest.net/item/bosspress/79723?ref=1stwebdesigner" target="_blank">BossPress ($32)</a></h2>
<p>BossPress is a Wordpress theme which is suitable for web developers, designers, photographers and small corporates.</p>
<p>Some features:</p>
<ul>
<li>Full width showcase</li>
<li>Absolute positioned logo &amp; navigation</li>
<li>Cool portfolio page</li>
<li>Full widget ready</li>
<li>Black &amp; white, 2 theme color option</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/bosspress/79723?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/bosspress-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Bosspress-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>10. <a target="_blank" href="http://themeforest.net/item/barely-corporate-premium-wordpress-theme-12-in-1/93069?ref=1stwebdesigner" target="_blank">Barely Corporate ($32)</a></h2>
<p>Barely Corporate is a clean Wordpress theme that couldn’t be more easy to use. With a beautiful exterior and a backend that gives you ultimate versatility and freedom, Barely Corporate will have your website up and running in no time.</p>
<p>It may look similar on the outside with just a few visual tweeks, but on the inside it’s the smoothest Wordpress theme you’ve ever used. The main goal was to give you the maximum amount of control, but at the same time not throw a million options and meta boxes in your face. Barely Corporate’s new framework will truly allow you to get that new website up and running for you or your client successfully without all the hassle.</p>
<p>Some features:</p>
<ul>
<li>12 styles</li>
<li>4 dynamic widget areas</li>
<li>Full lightbox integration in pages and posts, including
<p>shortcode</li>
<li>Insert jQuery slideshows in your pages and posts with a simple shortcode</li>
<li>Unlimited portfolio pages, with flash and video capability</li>
<li>Wordpress 3 navigation menus supported</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/barely-corporate-premium-wordpress-theme-12-in-1/93069?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/barely-corporate-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Barely-corporate-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>11. <a target="_blank" href="http://themeforest.net/item/realist-the-ultimate-real-estate-wordpress-theme/63073?ref=1stwebdesigner" target="_blank">Realist ($27)</a></h2>
<p>This is woking right out of the box. Make your own property listings that can be searched, and filtered. This is a property website ready to go!</p>
<p>Some features:</p>
<ul>
<li>Colour variations</li>
<li>Smart searching</li>
<li>Fading banner</li>
<li>Property previews</li>
<li>Automatic image attachment</li>
<li>Google maps</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/realist-the-ultimate-real-estate-wordpress-theme/63073?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/realist-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Realist-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>12. <a target="_blank" href="http://themeforest.net/item/universal-business-wordpress-template/89032?ref=1stwebdesigner" target="_blank">Universal Business ($27)</a></h2>
<p>Widgets loaded template with an extremely easy configuration of the homepage, header, footer, sidebar and many others. You can launch a nice an clean customer’s website in no time. Our goal was to create a template that you will be able to use for any client you have, no matter if you are creating a car business website, hotel website or website for carpenters. You can use it for your own company as well.</p>
<p>Some features:</p>
<ul>
<li>Valid XHTM Strict1.0 and CSS 2 .1, tableless design</li>
<li>Multiple templates</li>
<li>jQuery elements</li>
<li>Simple administration</li>
<li>PSDs included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/universal-business-wordpress-template/89032?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/universal-business-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Universal-business-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>13. <a target="_blank" href="http://themeforest.net/item/vision-corporate-and-portfolio-wp-theme/97236?ref=1stwebdesigner" target="_blank">Vision ($37)</a></h2>
<p>Vision is a Wordpress theme designed with corporate businesses  in mind. It has a custom CMS integrated into the Wordpress administration area that allows you to build a fully functional professional website in minutes. The theme is also well suited for online portfolios and blogs.</p>
<p>Some features:</p>
<ul>
<li>PDF documentation with screenshots to help you through the installation and customization process</li>
<li>Lots of <a target="_blank" href="http://www.unispheredesign.com/demo/vision/light/features/video-tutorials/">Video Tutorials</a> to help you install and customize the theme</li>
<li>5 Skins with one layered PSD file for the light skin</li>
<li>Full width home page jQuery slider with fading animation supporting images up to 1920px width</li>
<li>CSS and jQuery drop down Menu</li>
<li>Full width page template</li>
<li>125×125 ads ready</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/vision-corporate-and-portfolio-wp-theme/97236?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/vision-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Vision-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>14. <a target="_blank" href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/64910?ref=1stwebdesigner" target="_blank">BVD – Beautiful Website Design ($37)</a></h2>
<p>The WP version of very popular BVD – Beautiful Website Design. Any modern web browser will make this theme work with no issues! PC or Mac system does not make the difference as well.</p>
<p>Some features:</p>
<ul>
<li>jQuery Slider</li>
<li>Auto resizable thumbnails</li>
<li>Built In Twitter widget</li>
<li>Footer widgetized</li>
<li>Sidebar widgetized</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/64910?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/bvd-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Bvd-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>15. <a target="_blank" href="http://themeforest.net/item/real-estate-theme/59729?ref=1stwebdesigner" target="_blank">Real Estate ($27)</a></h2>
<p>Real Estate Theme is a professional Wordpress Template, that is suitable for real estate type websites or for showcasing your work and/or products. The Real Estate Theme comes with an easy to set up “featured” image slider (with it’s own admin options), a colour switcher with 3 colour schemes and a built-in contact form.</p>
<p>Some features:</p>
<ul>
<li>Supports Wordpress 3.0 menus</li>
<li>Theme admin panel</li>
<li>Three separate colour schemes</li>
<li>Built-in contact form</li>
<li>Share/social network buttons on posts and single page</li>
<li>Add recent Twitter and Flickr posts to your homepage</li>
<li>Google analytics integration</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/real-estate-theme/59729?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/real-estate-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Real-estate-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>16. <a target="_blank" href="http://themeforest.net/item/silverbusiness-wordpress-template/35896?ref=1stwebdesigner" target="_blank">Silver Business ($32)</a></h2>
<p>SilverBusiness is a premium wordpress template designed for companies, products, or individuals. It provides great solution for small businesses, because it combines great corporate design with functionality of WordPress. It comes jam packed with a lot of features. This site will really make you stand out!</p>
<p>Some features:</p>
<ul>
<li>jQuery powered top rotator, which can be adjusted simply via wordpress admin</li>
<li>Lavalamp jquery menu</li>
<li>Cufom powered custom heading in Anivers font</li>
<li>Featured services section which can be adjusted via wordpress admin, or turned off</li>
<li>Valid XHTML 1 .0 Strict and CSS</li>
<li>PSD files included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/silverbusiness-wordpress-template/35896?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/silver-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Silver-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>17. <a target="_blank" href="http://themeforest.net/item/weblider-stylish-business-and-portfolio-wordpress/60944?ref=1stwebdesigner" target="_blank">Web Lider ($32)</a></h2>
<p>WebLider is a Simple And Elegant WebSite Template. It is great to emphasize and present your products and your business.</p>
<p>The theme is easy to customize- options settings are included. This means that the options (such as images in slider, pages to show etc.) can be set in admin panel, without the need to edit the code.</p>
<p>The theme is widget ready. It has multiple dynamic sidebars for the different pages and widgets can be easy dragged and dropped into them from the admin panel.</p>
<p>Some features:</p>
<ul>
<li>Featured Stylish Images Slider on the homepage</li>
<li>Multiple Dynamic(widget aware) Sidebars included</li>
<li>Tableless Design</li>
<li>Works and looks similar in all major browsers</li>
<li>Working jQuery/PHP contact form with validation</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/weblider-stylish-business-and-portfolio-wordpress/60944?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/web-lider-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Web-lider-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>18. <a target="_blank" href="http://themeforest.net/item/c3-clean-classy-corporate-wp/106021?ref=1stwebdesigner" target="_blank">C3 ($37)</a></h2>
<p>Beautiful theme with a complex and customizable WP framework on top of it. Taking aside the unique, massive back end CMS , that gives you almost unending possibilities of making changes for your needs we’ve added something that no one on Theme Forest has so far: One click auto install.</p>
<p>Sit back, relax, drink your coffee, and watch how our work frame does its magic and auto installs the Creative Juice WP theme to the version that you see on the live preview. This theme requires php 5.0</p>
<p>Some features:</p>
<ul>
<li>One click auto install</li>
<li>Jquery image slideshow</li>
<li>Dynamic sidebar widget creation</li>
<li>Feedburner ready</li>
<li>Cross browser compatible</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/c3-clean-classy-corporate-wp/106021?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/c3-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="C3-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>19. <a target="_blank" href="http://themeforest.net/item/centivio-business-wordpress-theme-10-colors/75117?ref=1stwebdesigner" target="_blank">Centivio ($27)</a></h2>
<p>Centivio is clean web 2.0 style wordpress theme for business, company and corporate website. This theme comes with 10 color options for this theme for you can easily choose the color base on your business brand.</p>
<p>Some features:</p>
<ul>
<li>10 color options</li>
<li>jQuery Cycle for rotate images in the homepage</li>
<li>jQuery Sliding Box in the portfolio page</li>
<li>10 page template with its own right sidebar position</li>
<li>Home alternative with cu3er 3D Slider and 5 sidebar position</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/centivio-business-wordpress-theme-10-colors/75117?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/centivio-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Centivio-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>20. <a target="_blank" href="http://themeforest.net/item/durable-5-in-1-business-portfolio-wordpress/84440?ref=1stwebdesigner" target="_blank">Durable 5 in 1 ($32)</a></h2>
<p>Some features:</p>
<ul>
<li>The Homepage includes Custom Cu3er Slider with ease of editing and changing category option. You can modify it by setting things via admin cu3er options</li>
<li>Homepage 3 columns with 3 pages Option which can be selected via Admin</li>
<li>Highly customized About Page, Blog Page, Portfolio Page and Services Page, you are able to edit the coding if needed as i have well commented the coding</li>
<li>Multilevel Dropdown Menu by Superfish</li>
<li>Portfolio page with prettyphoto mixed order for video options</li>
<li>Multilevel threaded comment lists</li>
<li>Custom Page selection for welcome content</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/durable-5-in-1-business-portfolio-wordpress/84440?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/durable-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Durable-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>21. <a target="_blank" href="http://themeforest.net/item/greatio-premium-wordpress-theme/101595?ref=1stwebdesigner" target="_blank">Greatio ($32)</a></h2>
<p>Greatio is a Premium Wordpress Theme, best suited for Business, Portfolio, Interior and Architecture sites. It comes with some JQuery scripts which makes it better view. Also 7 color theme available (Red, Violet, Green, Blue, Orange, White and Wood).</p>
<p>Some features:</p>
<ul>
<li>Valid xHTML</li>
<li>Crossbrowser compatible</li>
<li>Cufon font replacement</li>
<li>7 different styles (added 4 more color variations)</li>
<li>3 different homepage sliders</li>
<li>Portfolio pages with LightBox</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/greatio-premium-wordpress-theme/101595?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/greatio-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Greatio-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>22. <a target="_blank" href="http://themeforest.net/item/teknium/77667?ref=1stwebdesigner" target="_blank">TekNium ($22)</a></h2>
<p>TekNium is a clean modern business wordpress theme.</p>
<p>Some features:</p>
<ul>
<li>Valid xHTML/CSS</li>
<li>jQuery image slider</li>
<li>Admin options page</li>
<li>Option to show latest news and blog posts on home page</li>
<li>Widget ready</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/teknium/77667?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/teknium-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Teknium-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>23. <a target="_blank" href="http://themeforest.net/item/koncept-10-in-1-business-portfolio-wordpress/78750?ref=1stwebdesigner" target="_blank">Koncept 10 in 1 ($32)</a></h2>
<p>This theme has all the popular and common features which used by the current trend sites and more over this site has a lots of features built and customized user friendly and easy loading less weight hand coded and full functionality. Works in all the major browsers. For more details see features list below.</p>
<p>Some features:</p>
<ul>
<li>2 Columns CSS Layout</li>
<li>Sidebar Widget ready Layout</li>
<li>Highly customized About Page, Blog Page, Portfolio Page and Services Page, you are able to edit each block as I have well commented the coding.</li>
<li>Multilevel Dropdown Menu by Superfish.</li>
<li>Portfolio page with full ease of customizing options.</li>
<li>Switch Colors From Admin Theme Option Page</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/koncept-10-in-1-business-portfolio-wordpress/78750?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/koncept-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Koncept-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>24. <a target="_blank" href="http://themeforest.net/item/universum-premium-business-wp-theme/43321?ref=1stwebdesigner" target="_blank">Universum ($27)</a></h2>
<p>Universum is clean and modern template designed for companies, small business and individuals. It combines fresh modern look with great functionality. It is really easy to set – up and comes with in-depth help file. Purchase it now and impress your customers today.</p>
<p>Some features:</p>
<li>Top billboard rotator</li>
<li>Custom styling for all general wordpress widgets</li>
<li>Adjustable rotator slides and feature services – through theme options</li>
<li>Cool jQuery powered Lavalamp menu</li>
<li>Many subpages – blog, team, services, gallery, working contact form</li>
<li>Valid XHTML 1 .0 Strict and CSS</li>
<p><a target="_blank" href="http://themeforest.net/item/universum-premium-business-wp-theme/43321?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/universum-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Universum-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>25. <a target="_blank" href="http://themeforest.net/item/newsense-clean-business-wordpress-theme/57897?ref=1stwebdesigner" target="_blank">New Sense ($32)</a></h2>
<p>NewSense is a Simple And Clean Business WordPress Theme. It’s great for any business and is designed in corporative and modern style. The home page is designed to emphasize your products.</p>
<p>The theme is easy to customize- options settings are included. This means that the options (such as images in slider, categories to show etc.) can be set in admin panel, without the need to edit the code.</p>
<p>The theme is widget ready. It has a dynamic sidebar and widgets can be easy dragged and dropped into it from the admin panel. The theme also goes with 3 styles- blue, orange and green and it is very easy to change between each other from the admin panel.</p>
<p>Some features:</p>
<ul>
<li>Featured Stylish Images Slider on the homepage</li>
<li>Dropdown menu support</li>
<li>Tableless Design</li>
<li>Advanced Admin Panel</li>
<li>Working jQuery/PHP contact form with validation</li>
<li>7 PSD Files included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/newsense-clean-business-wordpress-theme/57897?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/new-sense-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="New-sense-corporate-business-commercial-wordpress-themes" /></a></p>
<p><a target="_blank" href="http://themeforest.net/item/newsense-clean-business-wordpress-theme/57897?ref=1stwebdesigner"> </a></p>
<h2>26. <a target="_blank" href="http://themeforest.net/item/blitz-premium-business-wordpress-theme/98110?ref=1stwebdesigner" target="_blank">Blitz ($32)</a></h2>
<p>Blitz is a premium business wordpress theme that suitable for business, company, corporate and portfolio. The design is clean and professional and comes with 5 color variations.</p>
<p>Some features:</p>
<li>Clean and Professional Design</li>
<li>5 Color Variation</li>
<li>10 Pages Template</li>
<li>jQuery Slider and Lightbox</li>
<li>Cufon font replacement</li>
<li>Blog Page with custom category, just create a page and tell it which categories to include. Perfect for multiple blogs</li>
<p><a target="_blank" href="http://themeforest.net/item/blitz-premium-business-wordpress-theme/98110?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/blitz-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Blitz-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>27. <a target="_blank" href="http://themeforest.net/item/complexity-premium-wordpress-theme-12-in-1/111713?ref=1stwebdesigner" target="_blank">Complexity ($37)</a></h2>
<p>Complexity is a simple business and portfolio theme that is easy to customize and will get you or your client’s website up and running in no time. It’s everything it’s name isn’t, which is simple. This theme takes advantage of the power of Wordpress 3 with the use of custom post types, navigation menus, background image control, post thumbnails, and much more.</p>
<p>Some features:</p>
<ul>
<li>12 unique styles</li>
<li>5 dynamic widget areas</li>
<li>Full lightbox integration in pages and posts, including
<p>shortcode</li>
<li>Timthumb image cropping with easy on/off setting</li>
<li>Unlimited portfolio pages, with flash and video capability</li>
<li>Wordpress 3 navigation menus supported</li>
<li>6 Page Templates</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/complexity-premium-wordpress-theme-12-in-1/111713?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/complexity-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Complexity-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>28. <a target="_blank" href="http://themeforest.net/item/web-explorer-simple-business-wordpress-theme/64628?ref=1stwebdesigner" target="_blank">Web Explorer ($32)</a></h2>
<p>WebExplorer is a simple and elegant premium business WordPress theme. It’s great for any business and personal sites.</p>
<p>The theme is easy to customize- options settings are included. This means that the options (such as images in slider, pages to show etc.) can be set in admin panel, without the need to edit the code.</p>
<p>The theme is widget ready. It has multiple dynamic sidebars for the different pages and widgets can be easy dragged and dropped into them from the admin panel.</p>
<p>Some features:</p>
<ul>
<li>3 Featured Stylish Sliders on the homepage</li>
<li>Multiple Dynamic (widget aware) Sidebars included</li>
<li>Advanced Admin Panel</li>
<li>Very descriptive help file with screen shots and examples</li>
<li>Working AJAX contact form with validation</li>
<li>15 PSD Files included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/web-explorer-simple-business-wordpress-theme/64628?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/web-explorer-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Web-explorer-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>29. <a target="_blank" href="http://themeforest.net/item/vivee-clean-business-wordpress-theme-7-color/93297?ref=1stwebdesigner" target="_blank">Vivee ($32)</a></h2>
<p>Vivee is clean web 2.0 style web template that suiable for business, company, corporate and portfolio website. There are 7 color version of this template.</p>
<p>Some features:</p>
<ul>
<li>7 Color Variations</li>
<li>jQuery Cycle</li>
<li>10 Pages Template with its own sidebar position</li>
<li>Portfolio page with jQuery Lytebox</li>
<li>Blog Page with custom category</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/vivee-clean-business-wordpress-theme-7-color/93297?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/vivee-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Vivee-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>30. <a target="_blank" href="http://themeforest.net/item/small-business/83409?ref=1stwebdesigner" target="_blank">Small Business ($32)</a></h2>
<p>Small Business Theme is perfectly suited for business or portfolio site types. The theme has classic blog features as well as special portfolio section for displaying works or products.</p>
<p>The built-in options panel (over 20 options), provides advanced theme customization to fit your or client requests.</p>
<p>Update 1.4 brings support for Wordpress 3.0. The theme is backward compatible with Wordpress 2.9 but I highly encourage you to upgrade to Wordpress 3.0+ version as theme setup is much easier, only 4 steps! The new custom menus are supported and there is support for Google Analytics as well (or any other script/html that you want to add before end of the page). There is also jquery.easing plugin file permission fix that was causing trouble with slider.</p>
<p>Some features:</p>
<ul>
<li>Portfolio and Blog Functions (option for disabling blog feature)</li>
<li>Easy Installation</li>
<li>Easy Customization</li>
<li>XHTML 1 .0 Strict Valid</li>
<li>5 Custom Widgets</li>
<li>No Boring Custom Fields</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/small-business/83409?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/small-business-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Small-business-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>31. <a target="_blank" href="http://themeforest.net/item/vanilla-wordpress-cms-website-template/47140?ref=1stwebdesigner" target="_blank">Vanilla ($27)</a></h2>
<p>Vanilla Wordpress CMS Website Template is best suited for corporate, Business and Personal websites along with Blog facility</p>
<p>Some features:</p>
<ul>
<li>Auto thumbnail resize</li>
<li>Dropdown menu for categories and pages</li>
<li>Well commented code for all pages.</li>
<li>Well documention for speed and easing options customization for Featured Projects Slider</li>
<li>Valid XHTML and CSS</li>
<li>Designed with “960 GRID ” System</li>
<li>Read me file included for easy customization.</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/vanilla-wordpress-cms-website-template/47140?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/vanilla-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Vanilla-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>32. <a target="_blank" href="http://themeforest.net/item/andromeda-wordpress-the-beauty-of-simplicity/107876?ref=1stwebdesigner" target="_blank">Andromeda ($37)</a></h2>
<p>Andromeda is a clean theme with functional CMS and unique features. A massive pack of backend CMS options was created for this product to give you full control while creating and editing the site and its features. The main idea behind this theme was to create a something clean and simple, useful, nice looking and easy to modify.</p>
<p>Some features:</p>
<ul>
<li>3 Skins: Light Grey, Dark Grey and Mixed</li>
<li>6 custom option modules</li>
<li>12 widgets (8 custom) and unlimited sidebars</li>
<li>Accordion slider</li>
<li>Full control over sliders via CMS Options</li>
<li>Working AJAX contact form</li>
<li>Extensive documentation PDF file included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/andromeda-wordpress-the-beauty-of-simplicity/107876?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/andromeda-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Andromeda-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>33. <a target="_blank" href="http://themeforest.net/item/transformer/82402??ref=1stwebdesigner" target="_blank">Transformer ($27)</a></h2>
<p>Transformer is a (CMS) wordpress theme that includes all the needed features that would give your website a great look with many administrative options to help you customize as you wish. For example, you can choose one of two scrollable styles and manage scrollable options like effects, speed, autoscroll and much more.</p>
<p>Some features:</p>
<li>Valid xHTML and CSS</li>
<li>Huge theme admin panel to control your theme</li>
<li>9 color schemes</li>
<li>Scrollable for featured posts with 2 styles and all the options needed for customization</li>
<li>Home page recent posts / Using mouseover to switch tabs</li>
<li>404 page</li>
<li>Gravatar support</li>
<li>SEO Metadata ready</li>
<li>User’s manual guide – step by step with imageS</li>
<p><a target="_blank" href="http://themeforest.net/item/transformer/82402??ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/transformer-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Transformer-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>34. <a target="_blank" href="http://themeforest.net/item/colosseum/110628?ref=1stwebdesigner" target="_blank">Colosseum ($37)</a></h2>
<p>Colosseum is the ultimate fusion of wordpress, creativity and great futures. This premium theme can be used for just about anything, from corporate websites to personal portfolios. It uses a lot of advanced css3 and jQuery effects, yet it still works on browsers that don’t support it.</p>
<p>Some features:</p>
<li>CSS3 and jQuery powered billboard</li>
<li>10 color options</li>
<li>Huge admin interface</li>
<li>Featured services with animated CSS3 tooltips</li>
<li>Robust, animated portfolio</li>
<li>5 custom widgets</li>
<li>Social bookmarks</li>
<li>Integrated contact form</li>
<p><a target="_blank" href="http://themeforest.net/item/colosseum/110628?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/colosseum-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Colosseum-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>35. <a target="_blank" href="http://themeforest.net/item/freshfolio/73287?ref=1stwebdesigner" target="_blank">Freshfolio ($32)</a></h2>
<p>Freshfolio is a Wordpress theme with a clean interface and awesome jQuery custom slideshow perfect for use with portfolio and business websites.</p>
<p>Some features:</p>
<li>Custom jQuery Slideshow</li>
<li>Translate the theme into any language without touching any code</li>
<li>Custom newsticker on frontpage</li>
<li>Dynamic script adds lightbox to all images that links to images</li>
<li>Custom scroll follow script in all posts</li>
<li>Customize the whole theme from the admin panel and enable and disable almost anything</li>
<li>Available in millions of colors instantly.</li>
<p><a target="_blank" href="http://themeforest.net/item/freshfolio/73287?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/freshfolio-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Freshfolio-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>36. <a target="_blank" href="http://themeforest.net/item/corporatefolio/33099?ref=1stwebdesigner" target="_blank">Corporate Folio ($27)</a></h2>
<p>CorporateFolio is an elegant theme aimed at companies who need a quick and serious web presence setup. The homepage is perfectly suited to showcase your services, previous work or products while the blog is there to publish important company news and promote engagement through it.</p>
<p>Some features:</p>
<ul>
<li>Valid code</li>
<li>Custom homepage</li>
<li>Content Slider (either pages or posts)</li>
<li>Portfolio page template</li>
<li>7 widgetised areas</li>
<li>Auto Image resizing</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/corporatefolio/33099?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/corporate-folio-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Corporate-folio-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>37. <a target="_blank" href="http://themeforest.net/item/explicit-business-blog-portfolio-wp-theme/113495?ref=1stwebdesigner" target="_blank">Explict ($37)</a></h2>
<p>Some features:</p>
<ul>
<li>All Fundamental Page Templates (main page, full-width page, search results, 404, contact, archives, author pages, post pages)</li>
<li>6 Additional Page Templates (blog, 3 portfolios, left sidebar page, right sidebar page)</li>
<li>Animated portfolio with category filtering</li>
<li>30+ custom easy to use Shortcodes</li>
<li>Accordion Content Slider</li>
<li>Different Sidebar Per Post/Page</li>
<li>Layered PSD files</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/explicit-business-blog-portfolio-wp-theme/113495?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/explict-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Explict-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>38. <a target="_blank" href="http://themeforest.net/item/wordpress-kinetic-theme-3-in-one/113441?ref=1stwebdesigner" target="_blank">Kinetic 3 in 1 ($37)</a></h2>
<p>Kinetic Template has been designed to suit any kind of wordpress site. It comes with 3 color schemes at the moment, 2 Image sliders and several page templates.</p>
<p>The theme provides total control over your content and lets you decide how you want to show your site’s content to your visitors. However, author is always open for suggestions for more features or designs.</p>
<p>Some features:</p>
<li>3 Unique Color Schemes</li>
<li>6 Dynamic Widget Areas</li>
<li>Easy addition of Posts or Images in the Homepage Slider</li>
<li>2 Image Sliders: Nivo Slider and Kwicks Accordion</li>
<li>Custom Write Panel to Extra info to every Post</li>
<li>5 PSD files for easy Customization</li>
<li>Unlimited Support</li>
<p><a target="_blank" href="http://themeforest.net/item/wordpress-kinetic-theme-3-in-one/113441?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/kinetic-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Kinetic-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>39. <a target="_blank" href="http://themeforest.net/item/good-business-premium-wordpress-theme/112747?ref=1stwebdesigner" target="_blank">Good Business ($37)</a></h2>
<p>Good Business is a very clean Premium Business Wordpress theme. It can be use for 1 or 2 column layout. Has a beautiful sidebar navigation and breadcrumbs of every inside page for you to easy to navigate.</p>
<p>Good Business comes with an impressive fully customizable jQuery and 3D slider, it has a 6 color style variation. This wordpress theme is fully customizable and well documented. Whether you’re a WordPress pro or just a beginner, this theme has you covered. With a huge custom back end area you have complete control over the look and style of your theme.</p>
<p>Some features:</p>
<ul>
<li>Conform to W3C standards</li>
<li>2 Homepage sliders</li>
<li>6 Page templates</li>
<li>Widgets sidebars</li>
<li>Ajax Contact Form</li>
<li>Huge Tabbed Admin Area</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/good-business-premium-wordpress-theme/112747?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/good-business-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Good-business-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>40. <a target="_blank" href="http://themeforest.net/item/podium-clean-and-elegant-business-theme/112658?ref=1stwebdesigner" target="_blank">Podium ($32)</a></h2>
<p>Podium is clean and elegant business wordpress theme that can be switched as business, corporate, portfolio and blogging theme. there are 7 skins option available, also two slideshow type (3D and jQuery slideshow) and two homepage layout.</p>
<p>Some features:</p>
<ul>
<li>7 skins option</li>
<li>2 slideshow style</li>
<li>Custom Post type for slideshow</li>
<li>Support Wordpress 3.0 Menu System</li>
<li>Portfolio page with Pop up Lightbox</li>
<li>Widgetable homepage and footer area</li>
<li>Valid XHTML /CSS</li>
<li>Poweful Admin Theme Options</li>
<li>PSD Files included</li>
<li>Well Documented</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/podium-clean-and-elegant-business-theme/112658?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/podium-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Podium-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>41. <a target="_blank" href="http://themeforest.net/item/novatorix-10-in-1-business-portfolio-and-blog/111717?ref=1stwebdesigner" target="_blank">Novatorix 10 in 1 ($37)</a></h2>
<p>Novatorix is a Wordpress Theme, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that can be controlled from your backend with a custom tool. The Theme has a huge wordpress custom backend (7 different option pages) that make customization of the Theme easy for those who don’t know much about coding or wordpress.</p>
<p>Some features:</p>
<li>Multiple CSS Styles</li>
<li>Homepage 3D slider</li>
<li>Portfolio Gallery Templates</li>
<li>Page Templates</li>
<li>Custom Style Shortcodes</li>
<li>5 custom widgets</li>
<li>15 Custom widget sidebars</li>
<li>Breadcrumbs Navigation</li>
<li>All PSD files (with all 10 colors)</li>
<li>Detailed documentation included</li>
<p><a target="_blank" href="http://themeforest.net/item/novatorix-10-in-1-business-portfolio-and-blog/111717?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/novatorix-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Novatorix-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>42. <a target="_blank" href="http://themeforest.net/item/aurora-wordpress-version/112627?ref=1stwebdesigner" target="_blank">Aurora ($32)</a></h2>
<p>The Aurora WordPress version is author’s best project ever! Business site, Blog and Portfolio in one. Layout is designed for companys which love celan, crispy and professional designs. Each page was designed step by step with details. The package contains 6 full pages with 10 color schemes!</p>
<p>Some features:</p>
<li>Layout schemes – here you have predefined columns (can be with or whitout header)</li>
<li>Quotes, paragraphs with images, headlines</li>
<li>Gallery – with tabbed navigation between galeries</li>
<p><a target="_blank" href="http://themeforest.net/item/aurora-wordpress-version/112627?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/aurora-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Aurora-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>43. <a target="_blank" href="http://themeforest.net/item/furu-business-blog-portfolio-wordpress-theme/110262?ref=1stwebdesigner" target="_blank">Furu ($37)</a></h2>
<p>Some features:</p>
<ul>
<li>All Fundamental Page Templates (main page, full-width page, search results, 404, contact, archives, author pages, post pages)</li>
<li>6 Additional Page Templates (blog, 3 portfolios, left sidebar page, right sidebar page)</li>
<li>30 custom easy to use Shortcodes</li>
<li>Custom Twitter Updates Widget</li>
<li>Contact Form Widget with all possible fields</li>
<li>Threaded comments ready</li>
<li>100% Valid XHTML</li>
<li>Layered PSD files</li>
</ul>
<p><a target="_blank" href="http://themeforest.net/item/furu-business-blog-portfolio-wordpress-theme/110262?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/furu-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Furu-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>44. <a target="_blank" href="http://themeforest.net/item/dabbe-theme-8-in-1-wordpress/108877?ref=1stwebdesigner" target="_blank">Dabbe ($27)</a></h2>
<p>Some features:</p>
<li>jQuery graphic slider</li>
<li>Full editable slide text, box image and button</li>
<li>Clean design, clean CSS code</li>
<li>Featured news and business news on home page</li>
<li>Easy portfolio management</li>
<li>Full admin control</li>
<li>PSD files included</li>
<li>Well Documented</li>
<p><a target="_blank" href="http://themeforest.net/item/dabbe-theme-8-in-1-wordpress/108877?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/dabbe-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Dabbe-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>45. <a target="_blank" href="http://themeforest.net/item/goodwaves-business-portfolio-wordpress-theme/97228?ref=1stwebdesigner" target="_blank">Good Waves ($32)</a></h2>
<p>Goodwaves is a neat business and portfolio wordpress theme built to help you present your company, service or product in the easiest and most convenient way. It has an awesome 3D Image slider as well as some jQuery goodness to spice things up. The theme comes with an easy to understand and configure wordpress backend panel for quick customization and installation</p>
<p>Some features:</p>
<li>Valid XHTM Strict1.0 and CSS3 tableless design</li>
<li>Multiple page templates</li>
<li>Dropdown Menu, improved with jQuery</li>
<li>jQuery and CSS3 effects that are unobtrusive and degrade gracefully if not supported</li>
<li>Documentation &amp; e-mail Support provided</li>
<li>PSD file for customization included</li>
<p><a target="_blank" href="http://themeforest.net/item/goodwaves-business-portfolio-wordpress-theme/97228?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/good-waves-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Good-waves-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>46. <a target="_blank" href="http://themeforest.net/item/avisio-business-and-portfolio/113278?ref=1stwebdesigner" target="_blank">Avisio ($37)</a></h2>
<p>Avisio is a Wordpress theme that takes advantage with all the amazing new wordpress 3 features and is best suited for Portfolio and Business Websites. It has the ability to create unique skins right from your backend without the need to edit anything within your CSS files whith just a few mouse clicks and also offers the option to install content automatically when setting up the theme, so it will look like the theme preview.</p>
<p>Some features:</p>
<li>Automatic content installation for a fast and easy setup, can be activated optionally</li>
<li>Style switching with color picker and multiple layout and font options.</li>
<li>New WordPress 3 Menu support</li>
<li>Unique Portfolio Sorting/Filtering with a custom jQuery script</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>Sleek Image preloader</li>
<li>Working AJAX/PHP contact form</li>
<li>PSD files included</li>
<p><a target="_blank" href="http://themeforest.net/item/avisio-business-and-portfolio/113278?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/avisio-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Avisio-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>47. <a target="_blank" href="http://themeforest.net/item/awesomepress-5-in-1-corporate-portfolio-blog/92050?ref=1stwebdesigner" target="_blank">Awesome Press ($27)</a></h2>
<p>Some features:</p>
<li>4 color themes</li>
<li>jQuery framework</li>
<li>Multiple alternate page templates</li>
<li>5 widget ready areas</li>
<li>Pagination for posts</li>
<li>Featured posts</li>
<li>Specially developed custom fields for easy posting</li>
<li>Admin theme options page</li>
<li>Step by Step installation PDF documentation</li>
<p><a target="_blank" href="http://themeforest.net/item/awesomepress-5-in-1-corporate-portfolio-blog/92050?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/awesome-press-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Awesome-press-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>48. <a target="_blank" href="http://themeforest.net/item/quambizz-clean-and-easy-to-use-wordpress-theme-/87445?ref=1stwebdesigner" target="_blank">Quambizz ($27)</a></h2>
<p>Quambizz is an ultra clean and easy to use wordpress theme which can be used for a corporate purposes or if you want to set up a portfolio or even if you want a web site to represent your application.</p>
<p>Do you like a clean style then this theme will be perfect for you. The theme comes with 3 color styles, a PSD for the slider and a PSD for the portfolio image preview, and many more cool features such as a theme admin panel to set up the homepage, featured category, portfolio category and more.</p>
<p>Some features:</p>
<li>Well commented and clean CSS /XHTML Files</li>
<li>Tableless layout</li>
<li>21 x layered PSD Files</li>
<li>Featured Slider</li>
<li>Dropdown Navigation</li>
<li>Multiple Page templates</li>
<li>Theme admin panel</li>
<p><a target="_blank" href="http://themeforest.net/item/quambizz-clean-and-easy-to-use-wordpress-theme-/87445?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/quambizz-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Quambizz-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>49. <a target="_blank" href="http://themeforest.net/item/biz-template-business-wordpress-theme/68188?ref=1stwebdesigner" target="_blank">Biz ($27)</a></h2>
<p>Biz Template is clean style wordpress theme for business, company and corporate website. There are 3 color option for this theme that you can directly choose via “theme options” feature in the admin area.</p>
<p>This theme comes with 8 page templates with its own sidebar widget. The pages template are Home, About, Services, Blog, Portfolio, Contact, Extra1 and Extra2.</p>
<p>Some features:</p>
<li>Valid XHTML and CSS</li>
<li>Homepage jQuery Slider</li>
<li>jQuery Liquid Menu</li>
<li>8 Page Templates</li>
<li>20 Sidebar Position</li>
<li>Theme Options</li>
<p><a target="_blank" href="http://themeforest.net/item/biz-template-business-wordpress-theme/68188?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/biz-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Biz-corporate-business-commercial-wordpress-themes" /></a></p>
<h2>50. <a target="_blank" href="http://themeforest.net/item/crescento-5-in-1-business-portfolio-theme/106061?ref=1stwebdesigner" target="_blank">Crescento ($37)</a></h2>
<p>This site is best suitable for a business, Company, Blog, Portfolio, or freelancer Portfolio website as well. Theme works in all the major browsers, and has massive features to use for your next projects. For most of the part you can just follow the HTML with commented codes. The font used for the logo in case you are wondering is Myriad Pro, which comes with your Adobe Photoshop Installation. You can create new logo using the PSD file included.</p>
<p>Some features:</p>
<li>2 Columns CSS Layout.</li>
<li>Full width portfolio page</li>
<li>3 Mainpage Sliders</li>
<li>Fancy Nivo Slider</li>
<li>Services page 2 blocks</li>
<li>Portfolio page with sidebar</li>
<li>Blog page and Single page with multilevel comments coded CSS</li>
<li>Layered PSD file included smart objects for ease of editing and saving the files</li>
<li>Compatibility ( IE 7 , IE 8, Firefox, Opera, Safari, Chrome)</li>
<p><a target="_blank" href="http://themeforest.net/item/crescento-5-in-1-business-portfolio-theme/106061?ref=1stwebdesigner"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/07/business-corporate-themes/crescento-corporate-business-commercial-wordpress-themes.jpg" border="0" alt="Crescento-corporate-business-commercial-wordpress-themes" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/commercial-business-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Essential Guide to WordPress 3.0 Custom Taxonomies</title>
		<link>http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 21:00:03 +0000</pubDate>
		<dc:creator>Cosmin Negoita</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=16526</guid>
		<description><![CDATA[In general, taxonomies are used to arrange, classify and group things. By default, Taxonomies in WordPress are tags and categories that WordPress is using for the posts.  Apart from these two, WordPress makes it possible for theme developers to create their own taxonomies which are created within the functions.php theme file. This is what we [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/"><img class="alignleft size-full wp-image-17617" title="wordpress-custom-taxonomies" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/06/wordpress-custom-taxonomies.jpg" alt="" width="150" height="150" /></a>In general, taxonomies are used to arrange, classify and group things. By default, Taxonomies in WordPress are tags and categories that WordPress is using for the posts.  Apart from these two, WordPress makes it possible for theme developers to create their own taxonomies which are created within the <strong>functions.php</strong> theme file. This is what we are going to cover today. We will learn how to work with Custom WordPress taxonomies.<span id="more-16526"></span></p>
<p>Recently, I&#8217;ve started working on my portfolio WordPress theme, and I needed to define different information for each project/template, like price, colors, style, etc. For this thing, I needed to create three more taxonomies which are looking like this:</p>
<p><img class="alignnone size-full wp-image-16532" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/06/tax1.png" alt="WordPress Custom Taxonomies Example" width="500" height="517" /></p>
<h2>Creating a new taxonomy</h2>
<p>This is as simple as it is to look at the picture above. All you have to do is to copy the code below, in your <strong>functions.php. </strong>If your theme doesn&#8217;t have one, which I don&#8217;t think it hasn&#8217;t already one, just create the file yourself. Now, this is the code you have to write for each taxonomy you are creating:</p>
<pre class="brush: php;">

&lt;?php

register_taxonomy('test', 'post', array(
'hierarchical' =&gt; false,  'label' =&gt; 'test',
'query_var' =&gt; true, 'rewrite' =&gt; true));

?&gt;
</pre>
<p>Just replace &#8220;test&#8221; with the name of the taxonomy you wish to create. That&#8217;s how you create custom taxonomies. The&#8217;ll just appear in the Dashboard below the <strong>Post Tags.</strong></p>
<h2>Using the new taxonomies</h2>
<p>We have created them, but as well as tags and categories, you need some code if you want to output them in your article. That&#8217;s a little code snippet that goes into your WordPress loop, just like the post tags and categories:</p>
<pre class="brush: php;">

&lt;?php echo get_the_term_list($post-&gt;ID, 'people', 'People: ', ', ', ''); ?&gt;
</pre>
<h2>See it yourself</h2>
<p>Below are some examples of what we were talking about in this tutorial:</p>
<ul>
<li><a target="_blank" href="http://popcritics.com">PopCritics.com</a> is using custom taxonomies to output different details about the movies. See the <em><strong>Genre(s), Actor(s), etc&#8230;</strong></em></li>
<li><a target="_blank" href="http://typechart.com">TypeChart.com</a> is another great example of WordPress site that is making good use of taxonomies for finding font styling. You can see that in the sidebar.</li>
<li><a target="_blank" href="http://www.sohtanaka.com/web-design-portfolio/">Soh Tanaka</a>&#8217;s portfolio is also using taxonomies to output details on projects. Observe the <strong><em>Client, Date, URL, Tasks, etc&#8230;</em></strong></li>
</ul>
<p><strong><em><span style="font-style: normal; font-weight: normal;">I hope you have understood what taxonomies are. I&#8217;m sure you have heard about them before, but never wondered what they are, but what about using them for creating a nice t-shirt store?</span></em></strong></p>
<h2><strong><em><span style="font-style: normal; font-weight: normal;">Using Custom Taxonomies to create a T-shirt store</span></em></strong></h2>
<p><strong><em><span style="font-style: normal; font-weight: normal;"><img class="alignleft size-full wp-image-17159" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/06/store.png" alt="tshirt store photo" width="200" height="150" /></span></em></strong></p>
<p><strong><em><span style="font-style: normal; font-weight: normal;">Now that you have learned how to use custom taxonomies, we will use them for creating a T-shirt store. This won&#8217;t be a fully functional one, we will just build up the part that is using custom taxonomies.</span></em></strong></p>
<h3><strong><em><span style="font-style: normal; font-weight: normal;">1. Preparations</span></em></strong></h3>
<p><strong><em><span style="font-style: normal; font-weight: normal;">First of all we need a theme. We will use the new WordPress 3.0 default theme, called Twenty Ten. In order to get this theme and have it properly working, you need to <a target="_blank" href="http://wordpress.org/download/release-archive/">download WordPredd 3.0 RC2</a>. To get this version, scroll down to the bottom of the page, and the last one should be WP 3.0 RC2. Do not be worried working with WP 3.0, it has the same template tags.</span></em></strong></p>
<p><strong><em><span style="font-style: normal; font-weight: normal;">Next, you will need a local server, so the best way to create it, is using <a target="_blank" href="http://www.wampserver.com/en/download.php">WAMP</a>, or just build up your own environment following <a href="http://www.1stwebdesigner.com/tutorials/how-to-setup-local-web-server-with-latest-apache-php-and-mysql-packages/">this previous tutorial</a> on 1stWebDesigner.</span></em></strong></p>
<p><strong><em><span style="font-style: normal; font-weight: normal;">Now that you have your local server up and running, just install WordPress.</span></em></strong></p>
<h3><strong><em><span style="font-style: normal; font-weight: normal;">2. Editing the Twenty Ten theme</span></em></strong></h3>
<p>Now we need to create our custom taxonomies. First of all, think about what custom taxonomies you will need. For a T-shirt store we need to provide:</p>
<ul>
<li>size details</li>
<li>price</li>
<li>brand</li>
</ul>
<p>So, just open up the Twenty Ten <strong>functions.php</strong> file and create those custom taxonomies. I suggest to write the code at the end of the file for avoiding to break the default functions that the theme has. You can see the code that you will need and as It is, without any PHP tags:</p>
<pre class="brush: php;">

// Custom taxonomy for Size
register_taxonomy('Size', 'post',  array(
'hierarchical' =&gt; false, 'label' =&gt; 'Size',
'query_var' =&gt;  true, 'rewrite' =&gt; true));

// Custom taxonomy for Price
register_taxonomy('Price', 'post',  array(
'hierarchical' =&gt; false, 'label' =&gt; 'Price',
'query_var'  =&gt; true, 'rewrite' =&gt; true));

// Custom taxonomy for Brand
register_taxonomy('Brand', 'post',  array(
'hierarchical' =&gt; false, 'label' =&gt; 'Brand',
'query_var'  =&gt; true, 'rewrite' =&gt; true));
</pre>
<p>After creating the custom taxonomies, we need to modify the loop too. So this will be a little difficult, because you need to take care to not break any of the theme&#8217;s code. Don&#8217;t worry, I&#8217;ll guide you through this.</p>
<p><strong>Modifying the loop. </strong>Open up the <strong>index.php</strong> file from the 2010 theme. After you have opened it, you will see a tag that is calling the loop.php file:</p>
<pre class="brush: php;">

&lt;?php
 /* Run the loop to output the posts.
 * If you want to  overload this in a child theme then include a file
 * called  loop-index.php and that will be used instead.
 */
 get_template_part( 'loop', 'index' );
 ?&gt;
</pre>
<p>We will need to completely delete this, and create a  our own loop. So, instead loop tag, copy and paste this following code:</p>
<pre class="brush: php;">

&lt;?php if (have_posts()) : while (have_posts()) : the_post();  ?&gt;
&lt;div id=&quot;post-&lt;?&lt;span class=&quot;&gt;
&lt;pre&gt;&lt;?php the_ID(); ?&gt;&quot; &gt;&lt;/pre&gt;
&lt;/div&gt;
 &lt;h1&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;div&gt;
 &lt;!--Insert custom field and custom taxonomies code here--&gt;
&lt;pre&gt;&lt;?php wp_link_pages( array( 'before' =&gt;  '&lt;/pre&gt;
&lt;div&gt;' . __( 'Pages:', 'twentyten' ), 'after' =&gt;  '&lt;/div&gt;
' ) ); ?&gt;
 &lt;/div&gt;&lt;!-- .entry-content  --&gt;
&lt;/div&gt;
&lt;pre&gt;&lt;?php endwhile; else: ?&gt;&lt;/pre&gt;
&lt;div id=&quot;post-&lt;?&lt;span class=&quot;&gt;
&lt;pre&gt;&lt;?php the_ID(); ?&gt;&quot; &gt;&lt;/pre&gt;
&lt;/div&gt;
 &lt;h1  class=&quot;entry-title&quot;&gt;Nothing here...&lt;/h1&gt;
&lt;div  class=&quot;entry-content&quot;&gt;
Sorry, no T-shirts avaiable for  sale. Try coming back later.
 &lt;/div&gt;&lt;!--  .entry-content --&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;
</pre>
<p>This is the loop that we will use. The ID and class are some theme specific styles. You have to notice that I have removed the meta data. Now, we will need to add the codes that will retrieve our custom taxonomies and we will need to make use of custom fields too, to retrieve t-shirt thumbnail. Add them exactly where you see the HTML comment in the above code. Now, here&#8217;s the code that we need:</p>
<pre class="brush: php;">

&lt;img src=&quot;ID, 'post-icon', true);  ?&gt;&quot; alt=&quot;Icon for Post #&quot;  /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;?php echo get_the_term_list($post-&gt;ID,  'Size', 'Size: ', ', ', ''); ?&gt;&lt;/li&gt;
&lt;li&gt;&lt;?php echo  get_the_term_list($post-&gt;ID, 'Price', 'Price: ', ', ', '');  ?&gt;&lt;/li&gt;
&lt;li&gt;&lt;?php echo get_the_term_list($post-&gt;ID,  'Brand', 'Brand: ', ', ', ''); ?&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;?php the_content(); ?&gt;
</pre>
<p>Notice that the custom field name is &#8220;thumb&#8221;. For using this custom field you need to create a new one with the name thumb, and the value of it is the link to your thumb. Now that we have everything set, what about trying to publish a sample post. Take a look at mine:</p>
<p><img class="alignnone size-full wp-image-17167" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/06/sample.png" alt="" width="570" height="227" /></p>
<h2>Conclusion</h2>
<p>So, you have learned how to use custom taxonomies, and you have created a little T-shirt store. Well, not a fully functional one, but it&#8217;s a good start :)</p>
<p>If you have any questions regarding this tutorial please do not hesitate to ask via comments. I&#8217;ll try to solve all your problems. Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/feed/</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>The Beginner&#8217;s Guide to BuddyPress (Open Source Social Networking)</title>
		<link>http://www.1stwebdesigner.com/wordpress/the-beginners-guide-to-buddypress-social-networking-cms/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/the-beginners-guide-to-buddypress-social-networking-cms/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 10:00:53 +0000</pubDate>
		<dc:creator>DarrenM</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=15872</guid>
		<description><![CDATA[BuddyPress is plugin that adds social network like abilities to the acclaimed CMS WordPress. Adding features like a better profile for your blogs writers which combined turn it into a fully fledged social networking site.  Most of the possibly for this great plugin aren’t even existent yet!  As more and more sites start to use [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.1stwebdesigner.com/wordpress/the-beginners-guide-to-buddypress-social-networking-cms/"><img class="size-full wp-image-15903 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/Introduction-to-BuddyPress-for-Beginners-.jpg" alt="" width="150" height="150" /></a><a href="http://buddypress.org/">BuddyPress</a> is plugin that adds social network like abilities to the acclaimed CMS WordPress. Adding features like a better profile for your blogs writers which combined turn it into a fully fledged social networking site.  Most of the possibly for this great plugin aren’t even existent yet!  As more and more sites start to use BuddyPress its true power, and that of WordPress is astonishing.<span id="more-15872"></span></p>
<p><a target="_blank" title="BuddyPress Demo " rel="http://testbp.org/" href="http://testbp.org/"><img class="size-full wp-image-15954  alignnone" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/bp-test.jpg" alt="bp-test" width="570" height="332" /></a></p>
<p>Despite all this BuddyPress isn’t too hard to set up and use. In its early days a BuddyPress install required WPMU to run on, although since 1.2 that’s all changed, as BuddyPress can now run on a single WordPress install.</p>
<p>BuddyPress <strong>adds the following</strong> functionality to WordPress.</p>
<p><strong>Activity Streams:</strong> Members can follow the activity of their friends or groups on your site.</p>
<p><strong>Extended Profiles:</strong> The default WordPress profiles don&#8217;t even compare to these ones. The profiles can include friends, activity, groups, the latest posts by the member, a profile bio, and contact info, and that&#8217;s only the default options!</p>
<p><strong>Friends:</strong> Members can add each other as friends, this allows them to communicate and track each other easily.</p>
<p><strong>Private Messaging:</strong> Allows members to message each other privately so discussion doesn&#8217;t have to be &#8220;out in the open&#8221;.</p>
<p><strong>Groups:</strong> Members can create and join groups on whatever topics they like.</p>
<p><strong>Blogging:</strong> BuddyPress can tap into the power of WPMU and as of WordPress 3, multi-site therefore allowing you to give all of your users a fully functioning WordPress blog, the blog is integrated into the activity stream, and members can post on the blogs using their own account for your site.</p>
<p>These features can be turned on or off in the Admin Panel depending on how many of them you want to use for your site.</p>
<p>As BuddyPress is built as a normal WordPress plugin its extremely easy to customize to your liking and needs, if you know the basics of WordPress plugin development then you should be able to develop for it with only an extra bit of work, referring to the <a target="_blank" href="http://codex.buddypress.org/home/">BuddyPress Codex</a> or <a target="_blank" href="http://buddypress.org/support/topics/">Support Forum</a></p>
<p>You can download BuddyPress <a target="_blank" href="http://buddypress.org/download/">here</a> on the official site, which also includes support for the plugin as well as being the main place for BuddyPress discussion and development.</p>
<p>As powerful as BuddyPress is here is some useful plugins that you may like to consider adding to your site. Most plugins that work for a normal WordPress site should work for your BuddyPress site, although there are many great plugins that require BuddyPress to function correctly.</p>
<p>With a massive <a target="_blank" href="http://buddypress.org/extend/">172 plugins</a> currently on <a target="_blank" href="http://buddypress.org/">BuddyPress.org</a> I’ve selected 10 plugins I think that are extremely useful.</p>
<h2>10 Extremely Useful BuddyPress Plugins</h2>
<p><a target="_blank" href="http://buddypress.org/community/groups/bp-profile-privacy/"><strong>BP Profile Privacy</strong></a><strong><em> </em></strong></p>
<p><em>Allows your users to decide who can view their profile</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/buddypress-links/"><strong>BuddyPress Links</strong></a><br />
<em>Adds link &amp; rich media sharing functionality to your site. Can really help boost your sites activity and discussion.</em><br />
<a target="_blank" href="http://buddypress.org/community/groups/buddypress-gifts/"><strong>BuddyPress Gifts</strong></a><br />
<strong><em> </em></strong></p>
<p><em>Allows your members to send each other images as gifts. Site Admins can add / remove different gifts as they like.</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/bp-album/"><strong>BuddyPress Album+</strong></a><strong><em> </em></strong></p>
<p><em>Adds photo album capabilities to your site much like Facebook photo apps. Comes with plenty of options, although its recommended to test this plugin before use as there are a few known issues.</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/tweetstream/"><strong>Tweetstream</strong></a><strong><em> </em></strong></p>
<p><em>Integrates twitter into your BuddyPress site, allowing members to post links of their activity on your site, to twitter.</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/facestream/"><strong>Facestream</strong></a><strong><em> </em></strong></p>
<p><em>Integrates Facebook into your BuddyPress site, allowing members to post links of their activity on your site, to Facebook.</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/enhanced-buddypress-widgets/"><strong>Enhanced BuddyPress Widgets</strong></a><strong><em> </em></strong></p>
<p><em>Adds two new widgets that you can use, “members” and “groups” allowing newest, Active and most Popular members or groups to be shown.</em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/cubepoints-buddypress-integration/"><strong>CubePoints Buddypress Integration</strong></a><strong><em> </em></strong></p>
<p><em>Allows members to earn points as a reward for taking part in the site, (requires </em><a target="_blank" href="http://wordpress.org/extend/plugins/cubepoints/"><strong><em>CubePoints</em></strong></a><em> to work). </em></p>
<p><a target="_blank" href="http://buddypress.org/community/groups/buddypress-followers/"><strong>BuddyPress Followers</strong></a><strong><em> </em></strong></p>
<p><em>Works in the same way as the friends feature of BuddyPress except members don’t need to accept other members in order to be followed.  Works the same as twitter.</em></p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/bp-template-pack/"><strong>BuddyPress Template Pack</strong></a><strong><em> </em></strong></p>
<p><em>Adds BuddyPress support to a normal WordPress theme. Allowing you to use any WordPress theme you like without needing to customise it to work with BuddyPress.</em></p>
<h2>5 Great BuddyPress themes</h2>
<p>Although the default theme is a great looking theme, here are 5 more great themes to choose from.</p>
<h3><a target="_blank" href="http://wordpress.org/extend/themes/buddymatic"><strong>Buddymatic</strong></a></h3>
<p>BuddyPress theme framework, is based on Thematic a WordPress  theme framework.</p>
<p><a target="_blank" href="http://wordpress.org/extend/themes/buddymatic"><img class="alignnone size-full wp-image-15898" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/buddymatic1.png" alt="" width="550" height="309" /></a></p>
<h3><a target="_blank" href="http://wordpress.org/extend/themes/darwin-buddypress-buddypack/"><strong>Darwin (BuddyPress BuddyPack)</strong></a></h3>
<p><strong><a target="_blank" href="http://wordpress.org/extend/themes/darwin-buddypress-buddypack/"><img class="alignnone size-full wp-image-15900" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/darwin.jpg" alt="" width="570" height="320" /></a><br />
</strong></p>
<h3><a target="_blank" href="http://wordpress.org/extend/themes/jukt-micronics-buddypress-buddypack"><strong>Jukt Micronics</strong></a></h3>
<p><a target="_blank" href="http://wordpress.org/extend/themes/jukt-micronics-buddypress-buddypack"><img class="alignnone size-full wp-image-15901" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/jukt-micronics.jpg" alt="jukt-micronics" width="570" height="320" /></a></p>
<h3><a target="_blank" href="http://diesellaws.com/randy-candy-a-candy-coloured-child-theme-for-buddypress/"><strong>Randy Candy</strong></a></h3>
<p><strong><a target="_blank" href="http://diesellaws.com/randy-candy-a-candy-coloured-child-theme-for-buddypress/"><img class="alignnone size-full wp-image-15895" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/randy-candy1.png" alt="randy-candy" width="570" height="320" /></a><br />
</strong></p>
<h3><a target="_blank" href="http://buddydress.com/pricing/"><strong>BuddyPress Magazine</strong></a></h3>
<p><strong><a target="_blank" href="http://buddypressthemes.org/theme-preview/BuddyPress+Magazine+Theme/"><img class="alignnone size-full wp-image-15892" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/bubbypress-magazine.jpg" alt="bubbypress magazine" width="570" height="300" /></a><br />
</strong><br />
<a target="_blank" href="http://buddypressthemes.org/theme-preview/BuddyPress+Magazine+Theme/">Demo</a> | <a target="_blank" href="http://buddydress.com/pricing/">Purchase</a></p>
<h3>What&#8217;s Up Next here on 1stWD?</h3>
<p>This article was our first post in the BuddyPress series which gave you an introduction to BuddyPress. If you are not satisfied with the themes we listed here, feel free to browser the directory of themes over at BuddyPress official website or just wait for the 2nd article of series, in which we will show you how to create your own theme from scratch.</p>
<p>Have some question or confusion? Shout at us via comments section.:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/the-beginners-guide-to-buddypress-social-networking-cms/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Customize your WordPress Backend for Personal Branding</title>
		<link>http://www.1stwebdesigner.com/wordpress/customize-your-wordpress-backend-for-personal-branding/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/customize-your-wordpress-backend-for-personal-branding/#comments</comments>
		<pubDate>Sat, 29 May 2010 10:45:55 +0000</pubDate>
		<dc:creator>Kevin Stanley</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=10584</guid>
		<description><![CDATA[With more and more people building custom WordPress themes, it only makes sense to want to create it more personal. I have found a few ways that I will share with you on making your WordPress powered site more personal. This tutorial will show you how to create a custom WordPress login, and explain how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/customize-your-wordpress-backend-for-personal-branding/"><img class="alignleft size-full wp-image-15773" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/custom_wordpress_branding.png" alt="" width="150" height="150" /></a>With more and more people building custom WordPress themes, it only makes sense to want to create it more personal. I have found a few ways that I will share with you on making your WordPress powered site more personal. This tutorial will show you how to create a custom WordPress login, and explain how to fit it to your needs. <span id="more-10584"></span></p>
<p>We will then take it a step further and create a custom admin panel footer, and also a custom admin header image for our WordPress site.</p>
<h2>Let&#8217;s Get Started</h2>
<h4>Setting it Up</h4>
<p>For this example we are going to modify our functions.php file. If your theme does not have this file you can create a blank file and name it functions.php &#8211; Make sure this file is placed in the theme directory of the current activated theme you are using.</p>
<p>Add the following to your functions.php file:</p>
<h4>functions.php</h4>
<pre class="brush: php;">

php
function custom_login() {
echo 'wplogin/wplogin.css&quot; /&gt;';
}
add_action('login_head', 'custom_login');
?&gt;
</pre>
<h3>Explanation of the Code</h3>
<p>We are using the functions.php file to tell WordPress to override the default settings for the .css file used to make up the login screen. By doing this we are directing WordPress to use a specified .css file that we are going to create for our custom login screen. This .css file will be what we modify to design the login page.</p>
<p>Please make note that there are some very specific styles within the .css file that MUST be present, and changed accordingly for this to properly work. I have created the folder and placed the .css file in it to keep it separated from our regular theme files. If you want to the path can be altered as long as it points to the direct location of the CSS file within your theme.</p>
<h2>The Setup</h2>
<p>Next we will need to do two things. First, we will need to create a new folder in our theme directory. For this example we are going to use the folder name wplogin.</p>
<p>This folder will be placed within our WordPress theme file folder.</p>
<p>In this folder we will make a new blank file and name it wplogin.css</p>
<h3>Taking a look at the setup</h3>
<p>This is now what you should have. Remember that the location can be changed using the code we placed in our functions.php file &#8211; but for this example you should now have the following:</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/wordpress_login_custom1.jpg"><img class="alignleft size-full wp-image-15772" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/wordpress_login_custom1.jpg" alt="" width="570" height="428" /></a></p>
<p><strong>The file structure will be: wp-content\themes\YOUR_THEME_NAME\wplogin</strong></p>
<p>The new folder we named wplogin will go into your theme folder, and the new .css file we created will be held within the new folder.</p>
<h4>Now let&#8217;s view what we will be adding to our .css file:</h4>
<h4>wplogin.css</h4>
<pre class="brush: css;">

/* Page Background */
html {
	background: #eae2d5 url(bgimage-path);
	margin: auto;
	font-weight:bold;
}
/* Wordpress Logo - MAKE SURE TO MATCH THE WIDTH AND HEIGHT */
h1 a {
	background:url(logo-path) 0 0 no-repeat;
	width:290px;
	height:150px;
	margin-left: 10px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
/* Top Bar Background Color */
body.login {
	border-top-color:#dac6ad;
}
.message {
	margin-bottom: 0px;
}
/* Login Button */
#wp-submit {
	background: #bc3d1d;
	border: #f24643;
}
/* Lost Password Link */
.login #nav a, .login #nav a:hover {
	color: #443030!important;;
}
/* Top Bar Link */
.login p#backtoblog a:link, .login p#backtoblog a:visited {
	color:#443030;
	font-weight: bold;
}
.login p#backtoblog a:hover, .login p#backtoblog a:active {
	color:#443030;
	text-decoration:underline;
}
</pre>
<h3>Explanation of the .css</h3>
<p>Now that we have both the functions.php code in place telling WordPress to use our custom .css file, and our .css file in place, we can start to modify it a bit. The comments within the .css example should explain most everything but we will break it down to further understand it.</p>
<p>Make a note that when changing the logo image you MUST match it with the width and height in the CSS file. That is noted up above in the comments within the CSS file but it is VERY important or it will not always work correctly.</p>
<h2>Full Breakdown</h2>
<p>I know the .css is commented well but I still want to cover each editable item. Let&#8217;s see below to take a look at it:</p>
<p>The Page Background will be the entire page background color and image. The example .css file above shoes a link to the image but there is not one set. You can modify this to create a full-page background image, or change it to a color of your choice.</p>
<p>The WordPress Logo: This is where you will need to be sure to change the width and height to match your image. As long as the dimensions fit your logo you are using it will work correctly.</p>
<p>Top Bar Background Color: This is the bar located at the very top of the page. This can be changed to any color you like.</p>
<p>Message: This is the bottom bar that can be changed to any color you wish as well.</p>
<p>Login Button: This is the submit button on your login page.</p>
<p>Lost Password Link: This is the a:link button to retrieve your password if lost.</p>
<p>Top Bar Link: This is the a:link&#8217;s at the very top of the page within the Top Bar area.</p>
<p>Login: This is the writing on the login form of your page.</p>
<p>Take a look at the image below for a diagram of items within the CSS file we can change:</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/wordpress_login_custom_layout.jpg"><img class="aligncenter size-full wp-image-15779" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/05/wordpress_login_custom_layout.jpg" alt="" width="570" height="289" /></a></p>
<h2>Taking it a step further</h2>
<p>Now to continue making our WordPress install more custom and personal, we will change the footer link on our admin screen. This can personalize our website just a little bit more.</p>
<p>Again using the functions.php file we can force WordPress to change something. We will be telling WordPress what we want in our footer area of our admin screen instead of the generic text that comes standard with a regular install of WordPress.</p>
<p>Here is the code we will be adding, but this can be modified to your needs:</p>
<pre class="brush: php;">

function remove_footer_admin () {
echo 'Anything you want can go right here | Copyright &amp;copy; 2010 My Website name';
}
add_filter('admin_footer_text', 'remove_footer_admin');
</pre>
<h3>Changing the Admin Logo</h3>
<p>This can also be really useful when trying to personalize your WordPress powered site. Even if you are creating the site for a client they will always enjoy seeing their logo on the admin screen. This is easy to do, and can be done by editing the functions.php file. Add the following code and be sure it points to your image that you will be using:</p>
<pre class="brush: php;">

// Custom Admin Top Logo
add_action('admin_head', 'my_custom_logo');

function my_custom_logo() {
   echo '&lt;style type=&quot;text/css&quot;&gt;
         #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/custom_logo.gif) !important; }';
}
</pre>
<h2>What we have now</h2>
<p>Now we have created a custom WordPress login screen, as well as a custom footer within our admin screen, and a custom image in the header of our admin screen. This should be a good start in personalizing our WordPress powered site. There are still things that can be done to take all of this even further. Using these methods is good for personal sites, multi-user sites, and even sites created for clients that want to see their WordPress site personalized. Playing with the above provided code will allow you many options to customize your WordPress site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/customize-your-wordpress-backend-for-personal-branding/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>
