<?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>SmartBloggerz &#187; Tutorials For Bloggers</title> <atom:link href="http://www.smartbloggerz.com/category/blogger-tutorial/feed/" rel="self" type="application/rss+xml" /><link>http://www.smartbloggerz.com</link> <description></description> <lastBuildDate>Thu, 29 Jul 2010 10:19:17 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</generator> <item><title>3 Ways To Control Post Revisions In WordPress</title><link>http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/</link> <comments>http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/#comments</comments> <pubDate>Sat, 10 Jul 2010 10:37:53 +0000</pubDate> <dc:creator>Nabeel Ahmed</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[guest post]]></category> <category><![CDATA[post revision]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress hack]]></category> <category><![CDATA[wordpress post revisions]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tricks]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=4555</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/">3 Ways To Control Post Revisions In WordPress</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by Nabeel Ahmed from <a
title="Technology Blog" href="http://www.mushive.com/" target="_blank">Mushive.com</a> who is sharing with us in this post, a wordpress tutorial to control wordpress </em><i>post revisions</i><em>.<br
/> </em></p><p>WordPress by default creates revisions of your posts automatically. Whenever you save a page or post, the older version is retained so that you can revert it back at any time.</p><p>Sure this feature is handy at times but it is understandable that every revision would take its own space in the database. This would mean nothing for a few revisions but as your blog grows bigger &amp; each post or page has multiple revisions; it shows its effect.</p><p><span
id="more-4555"></span></p><p>This makes it necessary to do some housekeeping &amp; gain control over revision by removing older revisions to free up disk space and ease MySQL’s processing burden. This also has effect on the <a
title="speeding up your wordpress blog" href="http://www.smartbloggerz.com/2010/04/how-to-speed-up-wordpress-blog-in-3-simple-steps/" target="_blank">speed of your blog</a>.</p><p
style="text-align: center;"><img
class="aligncenter size-full wp-image-4643" title="WordPress Post Revisions" src="http://blog.smartbloggerz.netdna-cdn.com/wp-content/uploads/2010/07/wordpress-post-revisions.jpg" alt="post revisions" width="500" height="375" /></p><p>Here I am sharing 3 ways in which you can keep a check on <u>post revisions</u> &amp; keep them under control or <strong>disable post revisions</strong> completely. (But before we begin I advise you to <strong>BACKUP YOUR DATABASE</strong>):</p><h3>1. Remove Old Revisions</h3><p>I am going to repeat <strong>BACKUP YOUR DATABASE</strong> because in this step we are about to run SQL command directly on your MySQL tables &amp; one tiny slip can break your wordpress installation. First, you need to find your WordPress table prefix which is specified in the following line of wp-config.php:</p><p>$table_prefix  = &#8216;wp_&#8217;;</p><p>wp_ is the default table prefix but it may have been changed as a measure of added security. We’ll assume wp_ has been specified in the following code.</p><p>To delete all revisions for all pages and posts, start a MySQL administration tool such as <a
title="PHP My Admin" href="http://www.phpmyadmin.net/" target="_blank">phpMyAdmin</a> and run the following SQL statement:</p><p>DELETE a,b,c<br
/> FROM wp_posts a<br
/> LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)<br
/> LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)<br
/> WHERE a.post_type = &#8216;revision&#8217;;</p><p><em>(Remember to change all table references from “wp_” to your table prefix if necessary.)</em></p><p>If that’s a little too severe, you could remove all revisions prior to a specific date, e.g. the following statement will remove all revisions except for those made after January 1, 2010:</p><p>DELETE a,b,c<br
/> FROM wp_posts a<br
/> LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)<br
/> LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)<br
/> WHERE a.post_type = &#8216;revision&#8217;<br
/> AND a.post_date &lt; &#8217;2010-01-01&#8242;;</p><h3>2. Limit or Disable Post Revisions</h3><p>Add the following statement to your WordPress wp-config.php file to permanently <strong>disable post revisions</strong>:</p><p>define(&#8216;WP_POST_REVISIONS&#8217;, false);</p><p>The value can be set to ‘true’ to re-enable revisions.</p><p>Alternatively, you can use a positive integer to limit the number of permitted revisions, e.g.</p><p>define(&#8216;WP_POST_REVISIONS&#8217;, 5);</p><p>This will create a maximum of 5 revisions per post, plus one for auto-saving purposes. Older revisions will be automatically deleted.</p><h3>3. Use WordPress Plugins</h3><p>If this all sounds a little too scary, than there are a number of <a
title="wordpress post revisions plugin" href="http://wordpress.org/extend/plugins/tags/revisions" target="_blank">WordPress plugins offering revision control</a>.</p><p><strong>Do you have any further tips for controlling WordPress revisions? Share it with us by commenting below&#8230;<br
/> </strong></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/" rel="bookmark" class="crp_title">Speeding Up Your WordPress Blog</a></li><li><a
href="http://www.smartbloggerz.com/2009/12/wordpress-2-9-carmen-whats-new-problems-you-could-face/" rel="bookmark" class="crp_title">WordPress 2.9 &#8220;Carmen&#8221;: What&#8217;s New &#038; Problems You Could Face</a></li><li><a
href="http://www.smartbloggerz.com/2010/06/wordpress-brings-in-3-0-thelonious-have-you-updated/" rel="bookmark" class="crp_title">WordPress Brings In 3.0 &#8220;Thelonious&#8221; &#8211; Have You Updated?</a></li><li><a
href="http://www.smartbloggerz.com/2009/08/15-plugins-to-boost-up-your-wordpress-security-and-a-special-tip/" rel="bookmark" class="crp_title">15 Plugins to Boost up your WordPress Security and a Special Tip!</a></li><li><a
href="http://www.smartbloggerz.com/2009/07/wordpress-2-8-1-is-now-available/" rel="bookmark" class="crp_title">WordPress 2.8.1 Is now available!</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/">3 Ways To Control Post Revisions In WordPress</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>How To Create A Superb Autoresponder Course To Cash In From Your Subscribers!</title><link>http://www.smartbloggerz.com/2010/07/how-to-create-a-superb-autoresponder-course-to-cash-in-from-your-subscribers/</link> <comments>http://www.smartbloggerz.com/2010/07/how-to-create-a-superb-autoresponder-course-to-cash-in-from-your-subscribers/#comments</comments> <pubDate>Mon, 05 Jul 2010 10:01:21 +0000</pubDate> <dc:creator>iYingHang</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Make Money Online]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[autoresponder]]></category> <category><![CDATA[autoresponder course]]></category> <category><![CDATA[email marketing]]></category> <category><![CDATA[guest post]]></category> <category><![CDATA[newsletter]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=4543</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2010/07/how-to-create-a-superb-autoresponder-course-to-cash-in-from-your-subscribers/">How To Create A Superb Autoresponder Course To Cash In From Your Subscribers!</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by iYingHang who blogs at his superb <a
title="technologies blog" href="http://www.shastera.com/" target="_blank">technologies blog Shastera Dot Com</a></em> <em>and today is telling us about creating a superb autoresponder course. </em></p><p>Offering e-Courses like Mr. John Chow is an easy and superb way to build relationships with your blog readers. As we all know, creating an <b>autoresponder course</b> is not a big deal at all. Well, somebody said that it just sounds too good to be true so I am going to prove them wrong.</p><p>Basically, a killer <u>autoresponder course</u> is not difficult to create and it can be summarized into only 5 easy peasy steps!</p><p><span
id="more-4543"></span></p><h3><img
class="aligncenter size-full wp-image-4608" title="Autoresponder Course" src="http://blog.smartbloggerz.netdna-cdn.com/wp-content/uploads/2010/07/autoresponder-course.jpg" alt="Autoresponder Course" width="400" height="393" /></h3><p><br
class="spacer_" /></p><h3>#1 &#8211; Choose A Subject</h3><p>The very first easy step in creating a superb autoresponder course is to decide the subject and niche of your course. You don’t send vegetarians emails about &#8220;how great the new McDonald’s McChicken is&#8221;. They just won’t buy it. You should also target a subject, which you have knowledge in, not just some stupid niche, which you aren’t really sure about. For example, before blogging at my <a
title="technologies blog" href="http://www.shastera.com/" target="_blank">technologies blog Shastera</a><a
href="http://www.Shastera.com"></a>, I was clueless about which niche I should start blogging in and in the end I thought that why not technologies since I am such an avid Apple fan?</p><h3>#2 &#8211; Create A Subtopic</h3><p>Niche and subject choosing is the first step whereas next you need to create is a list of subtopics. One lesson will be represented in each sub-topic and if you have 5 sub-topics, it can be offered to your subscribers as a free 5-day course.</p><h3>#3 &#8211; Dividing Your Lessons</h3><p>Now that you’ve your list of sub-topics ready; the next step is to separate each of the sub-topics into course lessons. In the first lesson, do not offer any sub-topics to be taught but instead you should introduce the whole lesson and most importantly yourself to them.</p><h3>#4 &#8211; Providing Valuable Content</h3><p>One of the most important factors in deciding the success of your autoresponder course is to provide good, valuable and informative content which is relevant to the niche of your subscribers.</p><p>You see, sometimes, people says branding is much more decisive in marketing but what I can tell you is that if Coca Cola starts producing Coke which smells like polluted water, they won’t go any further and Pepsi will overtake them.</p><p>By giving out lousy content, what I can tell you is to expect multiple readers unsubscribing from your list.</p><h3>#5- Setting Up Your Autoresponder Course</h3><p>Now that you’ve prepared your course, what you need to do is to transfer your text into your autoresponder. There are a lot of autoresponders out there and it is quite a hassle to make a good choice. I recommend you to try out two which I think are the best, “Aweber” and “Mail Chimp”. They are the best autoresponder service out there and many popular probloggers like John Chow and Dareen Rowse are using them.</p><p>After getting everything working, you will need to place a javascript code on your site to capture email addresses. Offering free autoresponder course to your clients, visitors and readers is very important as you are giving out value which they will certainly appreciate. This method of free advertising surely will increase your sales.</p><p><br
class="spacer_" /></p><p><em>If you are into online list building and looking to start an autoresponder course after reading this article then do read our <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> &#8220;<a
title="autoresponder course" href="http://www.smartbloggerz.com/2010/05/online-list-building-tips/" target="_blank">Online List Building: IMMEDIATE Download Or 7-Day E-Course?</a>&#8221; that compares whether you should start an <a
title="autoresponder course" href="http://www.smartbloggerz.com/2010/05/online-list-building-tips/" target="_blank">autoresponder course</a> or not.</em></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2010/03/5-effective-blog-post-ideas/" rel="bookmark" class="crp_title">5 Effective Blog Post Ideas</a></li><li><a
href="http://www.smartbloggerz.com/2010/05/online-list-building-tips/" rel="bookmark" class="crp_title">Online List Building: IMMEDIATE Download Or 7-Day E-Course?</a></li><li><a
href="http://www.smartbloggerz.com/2010/06/how-to-create-super-commented-guest-post/" rel="bookmark" class="crp_title">How To Create A Super Commented Guest Post</a></li><li><a
href="http://www.smartbloggerz.com/2010/04/are-you-taking-the-smart-approach-to-blogging/" rel="bookmark" class="crp_title">Are You Taking The &#8220;SMART&#8221; Approach To Blogging?</a></li><li><a
href="http://www.smartbloggerz.com/2009/09/how-to-make-money-online-with-niche-blogs/" rel="bookmark" class="crp_title">How To Make Money Online With Niche Blogs</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2010/07/how-to-create-a-superb-autoresponder-course-to-cash-in-from-your-subscribers/">How To Create A Superb Autoresponder Course To Cash In From Your Subscribers!</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2010/07/how-to-create-a-superb-autoresponder-course-to-cash-in-from-your-subscribers/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Speeding Up Your WordPress Blog</title><link>http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/</link> <comments>http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/#comments</comments> <pubDate>Sat, 26 Jun 2010 12:28:54 +0000</pubDate> <dc:creator>Ann Smarty</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[Blog]]></category> <category><![CDATA[blog improvement]]></category> <category><![CDATA[guest post]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=4376</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/">Speeding Up Your WordPress Blog</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by Ann Smarty who is a <a
href="http://www.seosmarty.com/">SEO consultant</a>.</em></p><p>It seems that everyone these days has a WordPress blog. It&#8217;s not at all surprising. After all, these blog sites are easy to create and maintain. Beyond that, they allow individuals to easily run their own site, and provide a great marketing mechanism for any business that&#8217;s smart enough to branch into social networking.</p><p>Despite how attractive and simplified a WordPress site is, however, you still have plenty of options for improving your blog. One of the major areas that advanced webmasters can fine tune is <strong>the loading speed of the site</strong>.</p><p><span
id="more-4376"></span></p><h2><span
style="color: #333399;">Why Site Speed Is Important?</span></h2><p>The load time of your site may be a more important factor in the success of your website than you realize. It should be obvious that <a
title="faster websites for happier visitors and better conversions" href="http://www.smartbloggerz.com/2010/01/faster-web-sites-for-happier-visitors-and-better-conversion-rates/" target="_blank">your visitors will be far happier with fast load times than slow ones</a>. Beyond that, however, your load speed may actually have a <a
title="how website speed affects rankings" href="http://www.smartbloggerz.com/2010/06/how-to-make-your-website-google-friendly/" target="_blank">direct affect on your site&#8217;s search engine optimization</a>.</p><p>According to the official Google blog entry created on April 9th, 2010, Google will be using a <a
title="Google Includes Speed Factor" href="http://www.smartbloggerz.com/2010/04/google-includes-speed-factor-is-your-website-ready/" target="_blank">site&#8217;s load speed as one of the factors</a> in its search algorithm. In plain talk, that means that a faster loading site will rank better.  While Google is the only major search engine that has announced that load speed will be a factor as of June, 2010, the other major search engines frequently mimic additions to Google&#8217;s search rankings.</p><h4>Here Are Some Simple Tips For Speeding Up Your WordPress Blog :</h4><p><img
class="aligncenter size-full wp-image-4514" title="Speeding Up WordPress Blog" src="http://blog.smartbloggerz.netdna-cdn.com/wp-content/uploads/2010/06/speeding-up-wordpress-blog.jpg" alt="speeding up wordpress blog" width="520" height="390" /></p><h3><span
style="color: #000000;">Choosing A Reliable Hosting Plan</span></h3><p>Sticking to a reliable hosting provider is crucial. This is why I usually recommend choosing a well-known hosting provider: it may cost more but it will save your time and money in the long run!</p><p>You may also consider going with some wicked hosting service like <a
href="http://www.rackspace.com/index.php">hosted exchange</a> for example which usually means more reliable plan as well as other cool benefits as well.</p><h3><span
style="color: #000000;">Cleaning Your Code</span></h3><p>Speeding up your WordPress blog can start with running through your code and cleaning it up in a few different ways. While the standard WordPress templates are fairly clean, they are also designed for &#8220;the average blogger.&#8221;</p><p>To make these templates easier to upload and simple enough for beginning webmasters to use, the code of WordPress blogs includes a long list of php references that could easily be hard coded or deleted entirely. Eliminating these php references will speed up how quickly your blog loads, and can also add to the stability of your site.</p><h3><span
style="color: #000000;">Clearing Out Your Plugins</span></h3><p>Plugins and widgets can add some great functionality to your site, but they aren&#8217;t going to help you achieve the &#8220;fastest possible load time.&#8221; You certainly shouldn&#8217;t eliminate useful features from your site, but removing any unused plugins will make a significant difference in load time.</p><h3><span
style="color: #000000;">Add A Cache Plugin</span></h3><p>While clearing out plugins that you don&#8217;t use is a great idea, one specific type of plugin should be added: a caching plugin. Cache plugins make large strides toward speeding up your WordPress blog by storing each of your posts directly on the server.</p><p>Normally, WordPress uses a database query to load your post, and this can result in a slow site load time if you have a lot of traffic.  Beyond these tips for eliminating unnecessary database delays and clearing up messy code, you will also want to be sure that any elements, such as images, that you include are individually optimized.</p><p><strong>I hope you would have liked reading this article and you attain the best possible loading speed for your wordpress blog. Do comment below if you have more tips or ways to speed up wordpress blog.</strong></p><p><br
class="spacer_" /></p><p>[If you liked reading this then you must consider reading : "<strong><a
title="how to speed up wordpress blog" href="http://www.smartbloggerz.com/2010/04/how-to-speed-up-wordpress-blog-in-3-simple-steps/" target="_blank">How To Speed Up WordPress Blog In 3 Simple Steps</a></strong>".]</p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2010/04/google-includes-speed-factor-is-your-website-ready/" rel="bookmark" class="crp_title">Google Includes Speed Factor &#8211; Is Your Website Ready?</a></li><li><a
href="http://www.smartbloggerz.com/2010/04/how-to-speed-up-wordpress-blog-in-3-simple-steps/" rel="bookmark" class="crp_title">How To Speed Up WordPress Blog In 3 Simple Steps</a></li><li><a
href="http://www.smartbloggerz.com/2010/01/faster-web-sites-for-happier-visitors-and-better-conversion-rates/" rel="bookmark" class="crp_title">Faster Web Sites For Happier Visitors And Better Conversion Rates</a></li><li><a
href="http://www.smartbloggerz.com/2010/07/3-ways-to-control-post-revisions-in-wordpress/" rel="bookmark" class="crp_title">3 Ways To Control Post Revisions In WordPress</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/speed-up-your-blogger-page-load-time/" rel="bookmark" class="crp_title">Speed Up Your Blogger Page Load Time &#8211; Compress Your CSS</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/">Speeding Up Your WordPress Blog</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2010/06/speeding-up-your-wordpress-blog/feed/</wfw:commentRss> <slash:comments>21</slash:comments> </item> <item><title>How To Create An Enticing Blog Header Image</title><link>http://www.smartbloggerz.com/2010/05/how-to-create-an-enticing-blog-header-image/</link> <comments>http://www.smartbloggerz.com/2010/05/how-to-create-an-enticing-blog-header-image/#comments</comments> <pubDate>Fri, 21 May 2010 11:20:23 +0000</pubDate> <dc:creator>Murray</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[guest post]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=3621</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2010/05/how-to-create-an-enticing-blog-header-image/">How To Create An Enticing Blog Header Image</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by Murray who shares <a
href="http://www.smartbloggerz.com/">make money online</a> tips at his  blog <a
title="make money online" href="http://www.murlu.com/" target="_blank">Murlu.com</a>.</em></p><p>A blog header has two main goals:</p><ul><li>Convey the overall message of your post</li><li>Entice a visitor to read your post</li></ul><p>So why do so many blogs skip out on such an important part of their blog posts? Certainly it&#8217;s not the lack of images available on the net. With thousands of available resources, you have no excuse not to be taking advantage of all the great benefits of using an enticing blog header image.</p><p>Skipping over the opportunity to create an header image lowers the opportunities for visitors to read your content. After you&#8217;ve driven visitors to your blog, the point is to get them to read. A great header image is one additional element that converts visitors into readers.</p><p><span
id="more-3621"></span></p><p><img
class="aligncenter size-full wp-image-3836" title="Creating Blog Header Image" src="http://blog.smartbloggerz.netdna-cdn.com/wp-content/uploads/2010/05/creating-blog-header-image.jpg" alt="blog header iamge" width="550" height="152" /></p><p>This post is going to show you just how easy it is to find great images to create an enticing blog header image.</p><h3><span
style="color: #000000;">1. Creative Commons Search</span></h3><p>Hands down, the easiest method to create a powerful and enticing blog header image is to use images that fall under creative commons.  Creative commons, depending on each level, generally allows you to use images in a non commercial manner.</p><p>This means you&#8217;re able to modify, post and use these images throughout your website as long as you give appropriate credit to the owner.</p><p>The easiest way to find a great image to use for your blog header is to do a creative commons search on the web.  A great search engine is available at <a
title="Creative Common Search" href="http://search.creativecommons.org/" target="_blank">Creative Commons Search</a>.</p><p>This search allows you find creative commons images on many websites such as:</p><ul><li>Flickr</li><li>Wikimedia</li><li>Jamendo</li></ul><p>You&#8217;ll be sure to find very interesting images you can use to create amazing blog header images. Most of these images are uploaded by amateur photographers but it doesn&#8217;t mean they aren&#8217;t worthwhile, you&#8217;ll find many you like and appropriate for your content.</p><h3><span
style="color: #000000;">2. Icons and Freebie Packs</span></h3><p>Many designers offer free brushes, icons and tools to create amazing header images.</p><p>There are thousands of free icons available online at <a
title="Icons Pedia" href="http://www.iconspedia.com/" target="_blank">IconsPedia</a> which fit your niche. If you write about <a
href="http://www.smartbloggerz.com/">making money online</a>, you can do a general search for money related icons.</p><p>Designers also offer brushes of all sorts: ink splatters, skylines, nature &#8211; the list is endless. Use your own creativity to create variations of your blog header image.</p><p>Using these icons and freebie packs, you will be able to create a unique header from your own creativity.</p><h3><span
style="color: #000000;">3. Free Stock Photos</span></h3><p><a
title="make money online with stock photography" href="http://www.smartbloggerz.com/2010/03/put-your-photography-skill-to-good-use-by-making-money-online-selling-stock-photos/" target="_blank">Stock photography</a> doesn&#8217;t have to be just for business and print media, you can also use these valuable images to create enticing blog header images.</p><p>Websites such as <a
title="Free Stock Photos" href="http://www.sxc.hu/" target="_blank">SXC.HU</a> offer free stock photos that fall under creative commons.</p><p>Thousands of photographers upload endless amounts of images to free stock photography websites so your choices are endless. There are literally thousands of images that depict acts which will be appropriate for your blog content.</p><h3><span
style="color: #000080;">Why A Blog Header Matters</span></h3><p>People make split decisions online, capturing their attention with a powerful headline and blog header image is your best way to pull them in and read your blog post.</p><p>The blog header image helps convey to the reader what your post will be about. The image can also be used to peak the visitors interest and be used as a metaphor which can later be explained in the post, giving your reader the &#8220;ah-ha&#8221; moment.</p><p>Simply load your favorite image editing software, play around with the settings and images you use and in no time you&#8217;ll be able to create a unique and enticing header image.</p><p>You owe it to yourself to make each of your blog posts the best you can. Including a great header images, using the resources in this post will start you in the right direction.</p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2008/09/top-5-free-blog-header-image-websites/" rel="bookmark" class="crp_title">Top 5 Free Blog Header Image Websites</a></li><li><a
href="http://www.smartbloggerz.com/2010/03/put-your-photography-skill-to-good-use-by-making-money-online-selling-stock-photos/" rel="bookmark" class="crp_title">Put Your Photography Skill To Good Use By Making Money Online Selling Stock Photos</a></li><li><a
href="http://www.smartbloggerz.com/2008/06/blogger-template-passionduo-red/" rel="bookmark" class="crp_title">Blogger Template &#8211; PassionDuo Red</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/blue-spring-blogger-template/" rel="bookmark" class="crp_title">Blue Spring Blogger Template</a></li><li><a
href="http://www.smartbloggerz.com/2008/07/drive-more-traffic-with-images/" rel="bookmark" class="crp_title">Drive More Traffic With Images!</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2010/05/how-to-create-an-enticing-blog-header-image/">How To Create An Enticing Blog Header Image</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2010/05/how-to-create-an-enticing-blog-header-image/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>Three Simple But Useful FireFox Hacks For Google Analytics</title><link>http://www.smartbloggerz.com/2010/04/three-simple-but-useful-firefox-hacks-for-google-analytics/</link> <comments>http://www.smartbloggerz.com/2010/04/three-simple-but-useful-firefox-hacks-for-google-analytics/#comments</comments> <pubDate>Thu, 15 Apr 2010 11:57:58 +0000</pubDate> <dc:creator>Ann Smarty</dc:creator> <category><![CDATA[Blogger Hacks]]></category> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[guest post]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=3124</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2010/04/three-simple-but-useful-firefox-hacks-for-google-analytics/">Three Simple But Useful FireFox Hacks For Google Analytics</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by Ann Smarty who is a <a
href="http://www.seosmarty.com/">SEO consultant</a>.</em></p><p>For most  people blog traffic and search analytics is done with help of Google Analytics  which is quite understandable because it is free and really advanced.</p><p>You can get  really in-depth traffic analysis with the tool or, if you don’t want to go onto  any geeky details, you can just see your traffic sources and keyword referrals.</p><p>This post  will show you three simple Google Analytics hacks you will love! To try two of  the following tips, make sure you have <a
href="http://www.greasespot.net/">Greasemonkey</a> installed.</p><p><span
id="more-3124"></span></p><h3><strong>1. Export Your Report to Google Docs and Share  them easily! (Greasemonkey)</strong></h3><p>This  Greasemonkey <a
href="http://userscripts.org/scripts/show/27673">script</a> exports up to 10000 rows of Google Analytics data to Google Docs and thus  allows a handy option to save, organize and share your reports!</p><p
style="text-align: center;"><img
class="aligncenter size-full wp-image-3138" title="Export Report To Google Docs" src="http://www.smartbloggerz.comwp-content/uploads/2010/04/export-report-to-google-docs.jpg" alt="" width="450" height="173" /></p><h3><strong>2. See Your Unusual Traffic (Greasemonkey)</strong></h3><p>Here a <a
href="http://www.juiceanalytics.com/writing/enhancing-google-analytics-using-greasemonkey/">cool  Greasemonkey script</a> that allows you to see referrals that have sent you  unusual traffic:</p><ul
type="disc"><li>Referring sites with higher 50%       traffic over the last 3 days;</li><li>Referring sites appearing  in the last 3 days;</li><li>Referring sites with lower 50%       traffic over the last 3 days:</li></ul><p><br
class="spacer_" /></p><p
style="text-align: center;"><img
class="aligncenter size-full wp-image-3139" title="See Your Unusual Traffic" src="http://www.smartbloggerz.comwp-content/uploads/2010/04/see-your-unusual-traffic.jpg" alt="" width="450" height="452" /></p><h3><strong>3. Check Your Traffic for the Current day with  One Click of a Mouse (Bookmarklet)</strong></h3><p>Are you  obsessed with your <a
href="http://www.omniture.com/en/products/online_analytics">search analytics</a> which makes you check your current traffic again and again? If yes, you will  love the tip!</p><p>Now, to see  your traffic and referrals for the current day you need to make at least three  clicks but with this handy bookmarklet generator you will need only one!</p><p>Just  provide your Google Analytics ID and drag the link to your bookmarks toolbar:</p><p
style="text-align: center;"><img
class="aligncenter size-full wp-image-3140" title="Bookmarklet Maker" src="http://www.smartbloggerz.comwp-content/uploads/2010/04/bookmarklet-maker.jpg" alt="" width="450" height="270" /></p><p
style="text-align: left;">I hope you will have find these firefox hacks for Google Analytics pretty interesting. Do give it a try and let me know your opinion about it.</p><p><em> </em></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2009/04/how-to-read-your-visitors-mind-to-make-them-do-what-you-want/" rel="bookmark" class="crp_title">How To Read Your Visitors&#8217; Mind To Make Them Do What You Want</a></li><li><a
href="http://www.smartbloggerz.com/2010/02/how-to-instantly-make-more-money-from-your-blog/" rel="bookmark" class="crp_title">How To Instantly Make More Money From Your Blog</a></li><li><a
href="http://www.smartbloggerz.com/2010/01/6-traffic-generation-techinques-you-did-not-think-of/" rel="bookmark" class="crp_title">6 Traffic Generation Techniques You Did Not Think Of</a></li><li><a
href="http://www.smartbloggerz.com/2010/06/10-places-to-visit-before-you-die-as-a-webmaster/" rel="bookmark" class="crp_title">10 Places To Visit Before You Die &#8211; As A Webmaster</a></li><li><a
href="http://www.smartbloggerz.com/2010/06/3-helpful-niche-analysis-tools-reviewed/" rel="bookmark" class="crp_title">3 Helpful Niche Analysis Tools Reviewed</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2010/04/three-simple-but-useful-firefox-hacks-for-google-analytics/">Three Simple But Useful FireFox Hacks For Google Analytics</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2010/04/three-simple-but-useful-firefox-hacks-for-google-analytics/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>How to Fix WordPress Blank Page Error on Leaving Comments</title><link>http://www.smartbloggerz.com/2009/09/how-to-fix-wordpress-blank-page-error-on-leaving-comments/</link> <comments>http://www.smartbloggerz.com/2009/09/how-to-fix-wordpress-blank-page-error-on-leaving-comments/#comments</comments> <pubDate>Sun, 27 Sep 2009 10:01:54 +0000</pubDate> <dc:creator>Udegbunam Chukwudi</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[guest post]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=1563</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2009/09/how-to-fix-wordpress-blank-page-error-on-leaving-comments/">How to Fix WordPress Blank Page Error on Leaving Comments</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><em>This is a <a
href="http://www.smartbloggerz.com/write-for-us/">guest post</a> by Udegbunam Chukwudi of <a
title="Blogging and Make Money Online Tips" href="http://www.strictlyonlinebiz.com/blog/" target="_blank">StrictlyOnlineBiz</a></em></p><p>God knows how many times I’ve got the wordpress blank page error after leaving comments on some blogs. Some days back I got an email from one of my readers complaining that he had left  two lengthy comments on my blog only to get a blank page after clicking the submit button.  Thus I set out to find a solution and finally<strong> I’m 99% sure I’ve found one.</strong></p><p><span
id="more-1563"></span></p><p>My research revealed that in some cases the almighty and over-rated <strong>Akismet is to be blamed</strong>. One of the features of Akismet that helps it with it&#8217;s anti-spam capability is that it tends to monitor the time gap between when a web page or blog post loads and when a comment is subsequently submitted.</p><p><strong>If the time gap is small</strong>, Akismet tags the comment as spam and either throws up a blank page or tags the comment as spam in your wordpress dashboard. In most cases it does both.</p><h2>HOW TO FIX THIS ISSUE?</h2><p>Simple, deactivate and uninstall Akismet.</p><p>Please note that I tried this method and the next day, my blog went loco with the permalinks misbehaving badly. Single posts kept throwing up 404 errors.  Reactivating Akismet and restoring a backup of my database seems to have saved my blog.</p><p><strong>NOTE</strong>: I don’t know what Akismet had to do with this but I’m so NEVER going to be deactivating it again because at a point I felt I’d been hacked.</p><p><strong>If you intend going this route</strong>, make sure comment moderation is enabled for each and every comment. Most especially if you manage a do-follow blog like I do.</p><p>Another fix I found making the rounds on the net is <strong>changing a little piece of code found in the comments.php file</strong> of your wordpress theme.</p><p>It is said that wordpress uses post ID to track which comments go with certain posts and if this post id is missing in a comment, the comment is lost or the <strong>commentator is redirected to a blank page</strong>.</p><h2>The Trick:</h2><p><strong>Using CTRL + F</strong>, find:</p><p><code>&lt;input type="hidden" name="comment_post_ID" value="&lt;?php echo $id; ?&gt;" /&gt;</code></p><p>in your comments.php file and change it to</p><p><code>&lt;input type="hidden" name="comment_post_ID" value="&lt;?php echo $post-&gt;ID; ?&gt;" /&gt;</code></p><p>Save the file and you’re good to go&#8230;</p><p><strong>NOTE</strong>: So far so good, by changing this tiny piece of code in the comments.php file, I&#8217;ve been able to save my commentators a whole lot of headache. Deactivating Akismet was certainly not an option for me.</p><p><strong>I hope you will find this guide helpful whenever your blog will face such kind of problem.</strong></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2009/07/new-akismet-2-2-5-available-kill-those-spammers/" rel="bookmark" class="crp_title">New Akismet 2.2.5 Available. ^Kill Those Spammers^</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/how-to-highlight-author-comments/" rel="bookmark" class="crp_title">How to Highlight Author Comments</a></li><li><a
href="http://www.smartbloggerz.com/2009/08/15-plugins-to-make-your-wordpress-comment-system-better/" rel="bookmark" class="crp_title">15 Plugins to Make your WordPress Comment System Better</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/how-to-add-comment-form-beneath-your/" rel="bookmark" class="crp_title">How to add a comment form beneath your blog posts</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/inline-comments-are-available-for/" rel="bookmark" class="crp_title">Inline comments are available for Blogger blogs!</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2009/09/how-to-fix-wordpress-blank-page-error-on-leaving-comments/">How to Fix WordPress Blank Page Error on Leaving Comments</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2009/09/how-to-fix-wordpress-blank-page-error-on-leaving-comments/feed/</wfw:commentRss> <slash:comments>19</slash:comments> </item> <item><title>CommentLuv Now available for blogger platform</title><link>http://www.smartbloggerz.com/2009/06/commentluv-now-available-for-blogger-platform/</link> <comments>http://www.smartbloggerz.com/2009/06/commentluv-now-available-for-blogger-platform/#comments</comments> <pubDate>Wed, 24 Jun 2009 10:30:08 +0000</pubDate> <dc:creator>Typhoon</dc:creator> <category><![CDATA[Blogger Hacks]]></category> <category><![CDATA[Tutorials For Bloggers]]></category> <category><![CDATA[Blogger Widgets]]></category><guid
isPermaLink="false">http://www.smartbloggerz.com/?p=1014</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2009/06/commentluv-now-available-for-blogger-platform/">CommentLuv Now available for blogger platform</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1015" title="commentluv-blogger" src="http://www.smartbloggerz.comwp-content/uploads/2009/06/commentluv-blogger.gif" alt="commentluv-blogger" width="131" height="93" />Blogger Platform users it&#8217;s time that you can say Hurray! because popular wordpress plugin <a
title="CommentLuv" href="http://comluv.com" target="_blank">CommentLuv</a> which I am using it in my blog to share luv with my commentators is now also available for Blogger users.</p><p>This actually got released a week ago but I didn&#8217;t blogged about it at that time as the site(www.js-kit.com) was having some problems with their servers while installation. But now everything is good and I have tested it on my blogspot test blog.</p><p><span
id="more-1014"></span></p><p>It is actually a part of <span
style="text-decoration: line-through;">JS-kit</span> Intense Debate commenting system which can be installed very simply. During installation it will back up all your existing comments and will keep a copy of all comments in sync with your blog so you can stop using it any time. It even allows you to take your comments with you when you move blogs. This commenting system allows your readers to comment with many choices plus they can also add their pictures while commenting.</p><p><strong>You can get more info about it on the <a
title="CommentLuv for blogger." href="http://comluv.com/news/clearer-signup-and-commentluv-blogger-released/" target="_blank">official blog post</a>.</strong></p><p><span
style="text-decoration: line-through;"><strong>You can also check this system running on my <a
title="CommentLuv Test Blog" href="http://smartbloggerz.blogspot.com/2008/10/welcome.html" target="_blank">test blog post</a>.</strong></span></p><p><strong>So have you started using it? What&#8217;s your feedback on it?</strong></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2009/04/more-fun-and-benefits-while-commenting-on-smartbloggerz/" rel="bookmark" class="crp_title">More fun and Benefits while commenting on SmartBloggerz!</a></li><li><a
href="http://www.smartbloggerz.com/2010/05/how-to-get-more-comments-on-your-blog-following-10-simple-ways/" rel="bookmark" class="crp_title">How To Get More Comments On Your Blog Following 10 Simple Ways</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/intense-debate-incredible-plugin-for/" rel="bookmark" class="crp_title">Intense Debate-An Incredible Plugin for Blogger</a></li><li><a
href="http://www.smartbloggerz.com/2009/08/15-plugins-to-make-your-wordpress-comment-system-better/" rel="bookmark" class="crp_title">15 Plugins to Make your WordPress Comment System Better</a></li><li><a
href="http://www.smartbloggerz.com/2008/12/blogger-vs-wordpress-which-is-best/" rel="bookmark" class="crp_title">Blogger vs WordPress &#8211; Which is best?</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2009/06/commentluv-now-available-for-blogger-platform/">CommentLuv Now available for blogger platform</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2009/06/commentluv-now-available-for-blogger-platform/feed/</wfw:commentRss> <slash:comments>41</slash:comments> </item> <item><title>Displaying Widgets on Specific Pages in Blogger</title><link>http://www.smartbloggerz.com/2009/01/using-conditional-tags-in-blogger/</link> <comments>http://www.smartbloggerz.com/2009/01/using-conditional-tags-in-blogger/#comments</comments> <pubDate>Mon, 19 Jan 2009 13:02:00 +0000</pubDate> <dc:creator>Typhoon</dc:creator> <category><![CDATA[Blogger Hacks]]></category> <category><![CDATA[Tutorials For Bloggers]]></category><guid
isPermaLink="false">http://smartbloggerz.com/?p=205</guid> <description><![CDATA[<p><a
href="http://www.smartbloggerz.com/2009/01/using-conditional-tags-in-blogger/">Displaying Widgets on Specific Pages in Blogger</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></description> <content:encoded><![CDATA[<p>One of the reader recently commented on my blog to know how I show some widgets on the blog main page and it hides away on the content or item pages. The answer of this I will say that I use <span
style="font-weight: bold;">Conditional Tags</span> in my Blogger Template which gives &#8220;<span
style="font-weight: bold;">condition</span>&#8221; to any widget that where to appear and where not to. I am using these conditional tags at many places in my blog.</p><p>So through this post I will teach you that how you can easily make use of these <span
style="font-weight: bold;">Conditional Tags</span> in your template and easily play with the positions of your widgets <img
src='http://blog.smartbloggerz.netdna-cdn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><span
id="fullpost"><span
id="more-205"></span><br
/> So first let me tell you the proper <span
style="font-weight: bold;">definition of Conditional Tags</span> according to blogger.</span></p><div
style="text-align: center;"><span
style="font-size:130%;"><span
style="font-family:verdana;">&#8220;</span></span><span
style="font-weight: bold;">Conditional tags</span> are Blogger template tags that allow you greater flexibility in your template design. We call them conditional because they allow you to specify parts of your template that appear only under certain conditions.<span
style="font-size:130%;"><span
style="font-family:verdana;">&#8221;<br
/> </span></span></div><p>Ok; so you got the definition now let&#8217;s move on to How you can implement it.</p><h3>Implementation</h3><p><span
style="color: #cc0000; font-weight: bold;">First make sure to make a full backup of your existing template before attempting these Conditional Tags.</span></p><p><span
style="font-weight: bold;">So before using these tags in your template; first just add any widget in your blog by the default way.</span><br
/> Now when you have added it <span
style="font-weight: bold;">Go to Layout &gt; Edit HTML &gt; Click on the Expand Box</span></p><p>Then search for any widget by the name which you have given it as title.</p><div
style="text-align: center;"><span
style="font-weight: bold; color: #cc0000;">Display the widget only on Homepage</span></div><p>If you want to make an widget appear on main page only then we will use the following code:</p><p>&lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;index&amp;quot;&gt;<br
/> <code>&lt;/b:if&gt;</code></p><p><span
style="font-weight: bold;">Now let me tell you how to paste it:</span></p><p>Place &lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;index&amp;quot;&gt; tag just after the opening &lt;b:includable id=&#8217;main&#8217;&gt; tag and Place the closing &lt;/b:if&gt; tag just before the closing &lt;/b:includable&gt; tag.</p><p><a
href="http://1.bp.blogspot.com/_AJxhqY_o44A/SXR4PQxlSWI/AAAAAAAAAho/O8mWuy6tYw4/s1600-h/conditional-widget-code-homepage.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img
id="BLOGGER_PHOTO_ID_5292987665663478114" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 335px; height: 173px;" src="http://1.bp.blogspot.com/_AJxhqY_o44A/SXR4PQxlSWI/AAAAAAAAAho/O8mWuy6tYw4/s320/conditional-widget-code-homepage.jpg" border="0" alt="" /></a></p><div
style="text-align: center;"><span
style="font-weight: bold; color: #cc0000;">Display Widget on Post Pages Only</span></div><p>If you want to make an widget appear on main page only then we will use the following code:</p><p><code>&lt;b:if cond='data:page.type == &amp;quot;item&amp;quot;'&gt;<br
/> &lt;/b:if&gt;</code></p><p><span
style="font-weight: bold;">Now let me tell you how to paste it:</span></p><p>It&#8217;s almost the same thing to do just replace <code>&lt;b:if cond='data:blog.pageType == &amp;quot;index&amp;quot;&gt;</code> with <code>&lt;b:if cond='data:page.type == &amp;quot;item&amp;quot;'&gt;</code> from the above method.</p><div
style="text-align: center;"><span
style="font-weight: bold; color: #cc0000;">Display widget On Specific Page/URL Only</span></div><p>By this method you can display any special widget on any special page which is important for it.</p><p>For this we will use the following code:</p><p>Just add <code>&lt;b:if cond='data:blog.url == "BLOG_PAGE_URL"'&gt;</code> in the same way in the above mention methods just in this replace BLOG_PAGE_URL with the URL where you want the widget to appear.</p><div
style="text-align: center;"><span
style="font-weight: bold; color: #cc0000;">Display widget On Specific Label Page Only</span></div><p>By this method you can display any widget on any specific label page. <span
class="readmore">For example you may have posts on books and when the label books is clicked in your blog the sidebar will show a widget which you have added specially for books.</span></p><p>For this we will use the following code:</p><p><code>&lt;b:if cond='data:blog.url == "http://BLOG_NAME.blogspot.com/search/label/LABEL_NAME"'&gt;<br
/> &lt;/b:if&gt;</code></p><p><span
style="font-weight: bold;">Now let me tell you how to paste it:</span></p><p>Just use the above code i.e <code>&lt;b:if cond='data:blog.url == "http://BLOG_NAME.blogspot.com/search/label/LABEL_NAME"'&gt;</code> in the same <span
style="font-weight: bold;">as we did for</span> <span
style="font-weight: bold;">Displaying widgets only on homepage</span>.</p><p>Here<span
style="font-weight: bold;">, replace BLOG_NAME with your blog actual name and LABEL_NAME</span> with the label which is currently being used in your blog and where you want it to appear.</p><p>So I think you know the use of Conditional Tags and It&#8217;s Implementation.Well if you have any problem then do ask me. You can also take my help in implementing it for free in you blog by my hands  for which you just have send in your blogger info to my mail via contact form.</p><p><span
style="font-weight: bold;">Image Courtsey:</span> <a
rel="nofollow" href="http://www.bloggerbuster.com/2008/11/how-to-make-columns-of-equal-height-in.html" target="_blank">Bloggerbuster</a><br
/> <span
style="font-weight: bold;">Inspired by:</span> <a
rel="nofollow" href="http://www.blogdoctor.me/" target="_blank">BlogDoctor</a></p><div
id="crp_related"><h3>Related Posts:</h3><ul><li><a
href="http://www.smartbloggerz.com/2009/01/how-to-customize-newer-older-posts-link/" rel="bookmark" class="crp_title">How to Customize &#8220;Newer + Older Posts&#8221; Link in Blogger Footer</a></li><li><a
href="http://www.smartbloggerz.com/2008/08/social-bookmarking-widget-for-blogger-2/" rel="bookmark" class="crp_title">Social Bookmarking Widget for blogger</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/how-to-highlight-author-comments/" rel="bookmark" class="crp_title">How to Highlight Author Comments</a></li><li><a
href="http://www.smartbloggerz.com/2008/08/bloggers-new-reactions-feature-how-to/" rel="bookmark" class="crp_title">Blogger&#8217;s New &quot;Reactions&quot; Feature &#8211; How to add to customized blog templates</a></li><li><a
href="http://www.smartbloggerz.com/2008/09/social-bookmarking-widget-for-blogger/" rel="bookmark" class="crp_title">Social Bookmarking Widget For Blogger Like WordPress</a></li></ul></div><p><a
href="http://www.smartbloggerz.com/2009/01/using-conditional-tags-in-blogger/">Displaying Widgets on Specific Pages in Blogger</a> is a post from: <a
href="http://www.smartbloggerz.com">SmartBloggerz - Blogging Tips & Make Money Online Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.smartbloggerz.com/2009/01/using-conditional-tags-in-blogger/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 16/89 queries in 0.530 seconds using disk
Object Caching 2182/2317 objects using disk
Content Delivery Network via blog.smartbloggerz.netdna-cdn.com

Served from: www.smartbloggerz.com @ 2010-07-29 17:52:20 -->