Showing posts with label Blogger. Show all posts
Showing posts with label Blogger. Show all posts

October 3, 2012

4

Adding Disqus Comment Box on Blogger/Blogspot Blog

  • October 3, 2012
  • Don ZikkO


  • If you are looking to add more professional looking and functional commenting system to your Blogger/Blogspot blog checkout Disqus. It is a universal commenting system that is more user friendly and very easy to manage from Disqus interface.


    Many friends said that the comments on blogger would be lost, it did't. There are ways to import old comments to Disqus.



    If you want to install the Disqus comment box, follow these steps:



    1. Go to Disqus website

    2. Click Sign Up at the top right corner

    3. Fill the blank, then click Continue





    4. Add your twitter account (optional)





    5. Click on Blogger



     6. Add Site



    7. If you have several blogs, please select the blog then Add Widget





    8. It's automatically adds widgets to your blog

    9. Open your email and confirm email, by clicking a link in an email

    10. Click your username, then Edit Profile





    11. Edit Your Profile, Avatar and others.





    New comment form has more field like we usually have on WordPress powered blogs. Comments are neatly formatted and you can subscribe to RSS feed to follow up comments. Besides, users of Disqus can directly comment on your blog using their repestive IDs for more connected approach. You can moderate comment on blog by logging into account at Disqus website. Give Blogger comment box a Disqus makeover! My Comment Form is a good example of how the Disqus comment form looks like....

    I hope this helps.

    If you have anything to say or ask, Kindly make use of the comment form below. If you also want me to post a short review of your company or product, on this blog, do not hesitate to contact me.

    Please, do not forget to SUBSCRIBE to this blog, so that you can be receiving future articles, freebies DIRECTLY into your email inbox, even when you are not online.

    CLICK HERE TO SUBSCRIBE NOW!

    Cheers!
    Read more

    October 1, 2012

    1

    Adding Facebook Share or Like Button in Blogger Templates(New Blogger Layout)

  • October 1, 2012
  • Don ZikkO
  • As a blogger, one of the ways of promoting your blog's content are through social media sites!
    Sites like facebook brings more traffic when properly linked in 1 way or the other to facebook...

    Adding Facebook Share/Like Button Below Post Title

    To add the Facebook Like button below post title, simply follow these steps:
      1. Login to your blogger dashboard, firstly, it is necessary that you backup your blogger template before you try editing it incase you mess up with the template.
      2. Click the Edit HTML button.
    Blogger Edit HTML Button
    1. A new window will be opened. Click on the Proceed button and start editing.
    Blogger Proceed Button
    1. Check the Expand Widget Templates option.
    2. Find <head> in your template and replace it with the following code:<head> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = &quot;//connect.facebook.net/en_US/all.js#xfbml=1&quot;; fjs.parentNode.insertBefore(js, fjs); }(document, &#39;script&#39;, &#39;facebook-jssdk&#39;));</script>
    3. Now find the following code:
      <b:includable id='post' var='post'> <div class='post hentry' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <a expr:name='data:post.id'/> <b:if cond='data:post.title'> <h3 class='post-title entry-title' itemprop='name'> <b:if cond='data:post.link'> <a expr:href='data:post.link'><data:post.title/></a> <b:else/> <b:if cond='data:post.url'> <b:if cond='data:blog.url != data:post.url'> <a expr:href='data:post.url'><data:post.title/></a> <b:else/> <data:post.title/> </b:if> <b:else/> <data:post.title/> </b:if> </b:if> </h3> </b:if>
      You might see multiple codes similar to the above code. However, make sure that the code you find has <b:includable id=’post’ var=’post’> in it.
      Tip: Search for <data:post.title/> and you’ll find the above code lines.
    4. Place the following code right AFTER the code in previous step:
      <b:if cond='data:blog.pageType == &quot;item&quot;'> <div class='fb-like' data-send='false' data-show-faces='true' data-width='450'/> </b:if>
      The result should look something like this:
      <b:includable id='post' var='post'> <div class='post hentry' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <a expr:name='data:post.id'/> <b:if cond='data:post.title'> <h3 class='post-title entry-title' itemprop='name'> <b:if cond='data:post.link'> <a expr:href='data:post.link'><data:post.title/></a> <b:else/> <b:if cond='data:post.url'> <b:if cond='data:blog.url != data:post.url'> <a expr:href='data:post.url'><data:post.title/></a> <b:else/> <data:post.title/> </b:if> <b:else/> <data:post.title/> </b:if> </b:if> </h3> </b:if> <b:if cond='data:blog.pageType == &quot;item&quot;'> <div class='fb-like' data-send='false' data-show-faces='true' data-width='450'/> </b:if>
    5. Save your template and view posts on your blog, your facebook like button would appear.

    Adding Facebook Share Button Below Post Body

    To place the Facebook share button under each post, you have to follow the first 3 steps given above. Then find the code given in step 4 above. Scroll down a bit and you’ll see the following code:
     <div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id' itemprop='articleBody'> <data:post.body/> <div style='clear: both;'/> <!-- clear for photos floats --> </div>
    Warning! Do not use ‘Ctrl + F’ to find the above code. You have to find the code given in step 4 and then you can find the above code by scrolling down a bit.
    After finding the above code, place the following code right AFTER it:
    <b:if cond='data:blog.pageType == &quot;item&quot;'> <div class='fb-like' data-send='false' data-show-faces='true' data-width='450'/> </b:if>
    The result would look something like this:
     <div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id' itemprop='articleBody'> <data:post.body/> <div style='clear: both;'/> <!-- clear for photos floats --> </div> <b:if cond='data:blog.pageType == &quot;item&quot;'> <div class='fb-like' data-send='false' data-show-faces='true' data-width='450'/> </b:if>
    Now, save your template. You can now view your blog and that’s it.


    Read more

    September 26, 2012

    4

    Add your blogger blog to yahoo

  • September 26, 2012
  • Don ZikkO
  • Yahoo Site Explorer Add My Site page

    One of the most important ways to attract traffic to your site is to ensure that your Blogger (Blogspot) blog is properly indexed by popular search engines such as Yahoo. If you want to increase your chances of having your site quickly indexed by the Yahoo search engine it pays to submit your site and your feed. In this tutorial we will be covering the process of signing up with Yahoo, authenticating your site and adding your site feed to Yahoo Site Explorer.

    Yahoo can be notoriously slow at indexing and will not necessarily include all crawled pages in its search results. For guaranteed inclusion you can opt for a paid service but if you follow the steps below you have a good chance of having your Blogger blog properly indexed relatively quickly and without any cost.

    1. Sign up for a free Yahoo Account if you don't already have one.

    2. Sign in to Yahoo Site Explorer where you will be taken to the MySites page.

    3. Submit your Blogger website by entering the URL of your blog and then clicking on the Add My Site button.

    Yahoo Site Explorer Add My Site
    4. You will now see your website address included in the site list. The 3 columns to the right contain information about feeds, actions, and status. You will notice that the status of your site will be set to new (represented by a yellow circle). Click on the link to your site or click the Explore button.

    5. You will be taken to the results page and should get a message like the one pictured below.

    Yahoo site Explorer Results Page
    6. From the menu on the left click on the Authentication

    7. You will be presented with 2 authentication options. Choose Add a META Tag from the dropdown menu then copy the code provided using Ctrl + C.

    8. In a new window of your browser login to your Blogger blog. Keep the window of Site Explorer open as we will be returning.

    9. Navigate to Layout > Edit HTML in your Blogger (Blogspot) blog

    10. When you arrive at the Template page it is a good idea to make a backup of your site's template as a precaution. Go ahead and download it your computer by clicking on the Download Template link. Remember if you inadvertently overwrite some code you may not be able to restore your template so it is worth taking an extra few moments to do this step.

    11. Once you have backed up your site locate the Head tag. It will be only a few lines of code down from the top. Now insert the copied code from Yahoo in the position suggested as shown in the picture below using the Ctrl + V command.

    Blogger Template Head Tag
    12. Once you have pasted the code into the template there is still one further action needed. You will need to add a trailing slash at the end of the new line of code to avoid getting a parse error. Once you have added the trailing slash and are certain you have placed the code in the correct position go ahead and click on the Save Template button.

    add yahoo meta tag to blogger template
    13. Return to Yahoo Site Explorer and follow the mysite link. You will see that the status of your site has been verified and is represented by a green checkmark.

    14. From the lefthand menu select Feeds. You will be taken to the feeds page where you can go ahead and add a feed for your blog by entering the URL of the feed. Notice in the example below I have set an extra parameter to handle redirection of the feed by services such as Feedburner.

    Add a Feed to Yahoo
    15. Once the feed has been accepted it takes around 24 hours before it is active. After this time and provided there are no errors Yahoo displays "processed" followed by a green tick as can be seen in the picture below.

    Yahoo Feed Confirmation
    You have now completed the steps involved in having your Blogger (Blogspot) blog crawled and indexed by Yahoo. All that is left to do is to check back periodically to see if Yahoo has indexed your pages. This process can take time so don't expect overnight results. However once Yahoo recognises your feed your pages will be regularly crawled and any updates in content indexed. The process of adding a feed and verifying your site will have gone a long way towards ensuring your site is included in Yahoo search engine results.

    Tips for Adding Blogger Blog to Yahoo Site Explorer
    Tips for Submitting Your Blogger Blog to Yahoo
    Yahoo Search Engine Optimisation for Blogspot Bloggers
    SEO For Blogger Blogs with Yahoo
    Faster indexing of your Blogger Blog by Yahoo
    How to Ensure Your Blogger Blog is Indexed by Yahoo
    Speed Up Indexing of Your Blogger Blog by Yahoo
    Yahoo Search Engine and Blogger Blogs

    In this tutorial you have learned how to submit your Blogger (Blogspot) blog to Yahoo Site Explorer by authenicating your site and adding a feed which Yahoo can use as a sitemap to improve its indexing of your pages.

    Thanks to Gtek! For the images...

    Read more

    July 15, 2012

    0

    Blogger Related Posts with Thumbnails: LinkWithin

  • July 15, 2012
  • Don ZikkO
  • linkwithin related posts
    Keep your readers engaged with LinkWithin related posts with thumbnails widget. The related posts thumbnails will appear under each post, linking to related stories from your blog archive. It will make your old posts accessible to new or casual readers of your blog, thus increasing traffic.
    This tutorial will show you how to install LinkWithin widget to a Blogger blog. I’m splitting this tutorial into two sections -one is for installing default widget and another one is for installing custom widget.
    Before proceeding with this widget, you might want to read about another related posts widget: nRelate Related Posts plugin. nRelate’s widget allows more customization, and has a posts reindex option.

    a) Installing default LinkWithin widget

    Adding a default widget is actually pretty straightforward.
    1. linkwithin setup Go to LinkWithin.
    2. Enter your email address and blog URL.
    3. Select Blogger for the platform and select the number of stories.
    4. Click Get Widget! and the widget will be added to your blog.
    5. Done! The related posts thumbnails and links should appear under each post now.

    b) Installing custom LinkWithin widget

    If you would like to customize the widget, proceed with the rest of this tutorial. You can change the placement of the related posts thumbnails and the phrase that appears above them. You can also specify on which pages they should appear.
    Here we go,

    I. Get your Site Id
    1. site idGo to LinkWithin.
    2. Perform the same steps (steps 2 to 4) as in a) above, except this time choose Other for the platform.
    3. You will be given a code snippet, similar to the snapshot.
    4. Don’t copy the code. Just jot down or copy the Site Id number for later use. 

    II. Adding in the widget code
    1. Login to your Blogger account.
    2. Go to Dashboard > Design > Edit HTML.
    3. Back up your template.
    4. Copy the code below and paste it right before </body> tag in your template:
      <b:if cond='data:blog.pageType == &quot;item&quot;'>
      <script> 
      var linkwithin_site_id = SITE ID NUMBER; 
      linkwithin_text='YOUR CUSTOM PHRASE';
      </script> 
      <script src="http://www.linkwithin.com/widget.js"></script> 
      <a href="http://www.linkwithin.com/"><img src="http://www.linkwithin.com/pixel.png" alt="Related Posts with Thumbnails" style="border: 0" /></a>
      </b:if>
      • Put your Site Id number in code line 3.
      • Change the “You might also like:” phrase with your own phrase in code line 4.
      • The code above will make the related posts appear only on post pages. If you want to display them on all pages, just remove code line 1 and 8.
    5. Save and view your blog.

    III. Repositioning related posts display (optional)
    By default the related posts thumbnails will appear after each post body, ABOVE the post footer. That means it appears (in most cases) above your labels, comments link and timestamp.
    A few users mentioned that they prefer the thumbnails to appear BELOW the post footer, and asked me how can they make it so.
    So here it is folks. Follow these steps to place the related posts at the very end of your post section:
    1. In Design > Edit HTML, with Expand Widget Templates checkbox ticked, find the following code:
      <b:include data='post' name='post'/> 
    2. Add <div class="linkwithin_div"></div> right after the line, like so:
      <b:include data='post' name='post'/> 
      <div class="linkwithin_div"></div>
    3. Click Save. You're done!
    Enjoy!
    Read more
    2

    How To Customize Related Posts Plugin: nRelate for Blogger

  • Don ZikkO
  • Related posts plugins give bloggers the tools they need to help their visitors find interesting content. Usually placed at the end of a blog post or article, a related posts plugin can help engage your readers with your site as they are exposed to so much more of your great content than they normally would without such a plugin. Using a related posts plugin has been shown to improve overall site stats by increasing traffic and page views by an average of 6%, while also decreasing bounce rates and keeping readers on your site for longer.
    nrelate related content widget for Blogger

    There are a few options for related posts plugins out there, but the most customizable one is provided by nRelate. nRelate is a free tool for websites of all sizes and customization is very easy (with no confusing coding on your part) on platforms such as Blogger, WordPress and Tumblr. While nRelate for WordPress is the easiest platform to customize the plugin with, nRelate for Blogger is just as easy but is a little more involved and requires a few extra steps, which I will explain in detail throughout this post.

    Benefits

    Besides an increase in site traffic and easy customization options, there are a few other benefits of using nRelate’s related posts plugin:
    • No re-directs. Unlike some other related posts plugins, nRelate does not re-direct any of your internal links through it’s own site, so that you always get credit for all your internal ‘link juice’.
    • Re-index your site at any time. If you delete certain posts or articles and no longer want them to appear as a related post suggestion, you can clear your related posts cache with nRelate’s built-in ‘re-index’ option so their servers can then re-analyze your site and generate all new links to related posts.
    • Analytics reporting feature. Everyone who uses the nRelate plugin has access to the built in analytics reporting page, which displays all impressions, clicks, and other data so you can measure your increase in page views.
    • Hosted on nRelate’s own servers. Some other related posts plugins slow down your page’s loading time, but nRelate is supported on its own servers so this won’t be a problem.

    How To Install and Customize nRelate Plugin For Blogger

    Step 1: Install the Plugin
    1. Go to partners.nrelate.com and register. You’ll need to register if you want to customize the plugin for Blogger.
    2. Go to the Install tab and choose your platform: Blogger.
    3. Enter your site’s URL (make sure to include http:// and .blogspot.com) and click Submit.
      nrelate install to blogger
    4. Then choose if you want to display the plugin on posts as well as the homepage, or only on posts.
      nrelate blogger manage settings
    5. Once you click Install, your Blogger dashboard will then open in a new window or tab. Click Add Widget and then Save.add widget
    Step 2: Customize Your Settings
    You can customize your settings through the nRelate Partners Site under Manage Settings > Blogger where they give you a countless number of customization options.
    • Here, you can choose your thumbnail size, how many thumbnails you want to display (up to 10), as well as how far back in your archive you would like to go for related posts.
      nrelate thumbnail settings
    • They give you the option to support nRelate by displaying their logo within the plugin.
    • You can also choose to display sponsored ads within the plugin if you want to make some extra money with your site.
    • Additionally, you can choose to share related posts from external sites from your blogroll or any other sites you wish.

    Step 3: Choose Your Thumbnail Style
    1. Go to Manage Settings > Blogger > Blogger Style Gallery.
    2. Pick out the thumbnail style you want to use and follow the directions to change the style. All you will need to do is some simple copy and paste. Here are some examples of available theme options:
      nrelate thumbnail style 3 nrelate thumbnail style 2
      nrelate thumbnail style 1
    3. Go to your Blogger Dashboard > Design and click Edit on the ‘nRelate’ box. An edit box should pop up.
    4. Change the highlighted part of the code to the new css code that nRelate provides for you. For example, if you want to use the ‘trendland’ theme, you would change the highlighted code to: http://static.nrelate.com/common_b/0.01.0/nrelate-panels-tre.min.css
      nrelate change css
    Don’t panic if you can’t see the plugin right away – since it’s hosted on nRelate’s own servers, analyzing your site’s content can take up to two hours, especially if your site is relatively dense in content.
    That’s all there is to it! Now you can have a related posts plugin that is not only useful, but stylish too.
    Read more

    July 10, 2012

    0

    Random Posts Widget For Blogger

  • July 10, 2012
  • Don ZikkO

  • Random Posts Widget For Blogger i.e each time the page of your blog refreshes the posts on the blog showed by this widget changes, means this widgets always shows unique posts from your blog with unique combinations at random,i.e the widget selects the posts randomly from all your blog posts and never knows which post might it pick from your blog to show.Really this is the gem of the widget you really should show on your blog for sure.

    As before this i had blogged about a one more random posts widget in which a link was made and clicking on it would show random post in blog.



    Now how to add this widget in the blog.

    1. Log into Blogger >> Layout >> Html/Javascript .
    2.Then paste this code in it.


    <script type="text/javascript">
    var randarray = new Array();var l=0;var flag;
    var numofpost=6;function randomposts(json){
    var total = parseInt(json.feed.openSearch$totalResults.$t,10);
    for(i=0;i < numofpost;){flag=0;randarray.length=numofpost;l=Math.floor(Math.random()*total);for(j in randarray){if(l==randarray[j]){ flag=1;}}
    if(flag==0&&l!=0){randarray[i++]=l;}}document.write('<ul>');
    for(n in randarray){ var p=randarray[n];var entry=json.feed.entry[p-1];
    for(k=0; k < entry.link.length; k++){if(entry.link[k].rel=='alternate'){var item = "<li>" + "<a href=" + entry.link[k].href + ">" + entry.title.$t + "</a> </li>";
    document.write(item);}}
    }document.write('</ul>');}
    </script>
    <script src="/feeds/posts/default?alt=json-in-script&start-index=1&max-results=1000&callback=randomposts" type="text/javascript"></script>


    Change the the text no in red above in codes to select how many random posts you want to display.

    And Save the Widget.Now you will be shown up the the title of the posts in widget like you see in recent posts, recent comments or popular posts widget and all the posts will be picked randomly.

    Now How to show random posts title with post summary.

    Just open this script or download this Random Post Script.

    Either host it to your server or use this script only.

    You can get Free File Host Here.

    1. Log into Blogger >> Layout >> Html/Javascript .
    2.Then paste this code in it.

    <script type="text/javascript">
    var randarray = new Array();var l=0;var flag;
    var numofpost=5;var wordnumber=5;</script>
    <script style="text/javascript" src="http://btemplatescripts.googlecode.com/files/random-posts-with-summary.js">
    </script>
    <script src="/feeds/posts/default?alt=json-in-script&start-index=1&max-results=1000&callback=randomposts" type="text/javascript"></script>


    Just change the green url with your script url which you uploaded to your server,if you want.

    Alter the codes in red in above codes to adjust the count of posts and and how much word summary you want up to show up in the widget.Thats it so Simple.If you have any problems leave your comments below.
    Credits for widget to Bloggodown.
    Read more

    July 8, 2012

    4

    Adding Yahoo Smileys on Blogger Posts and Widgets V.2

  • July 8, 2012
  • Don ZikkO
  • Adding Yahoo Smileys on Blogger Posts and Widgets. On my previous post, I have wrote about How to Add Yahoo Smileys Emoticon on Blogger Threaded Comments. Now let's we hack the templates with a simple JavaScript code, and Yahoo Smileys will apear on your post and widget.



    yahoo smileys


    To add yahoo smileys emoticon on your posts and widgets , just follow two simple steps:

    1. Adding CSS Code

    2. Adding JavaScript code



    Adding CSS Code
    1. Go to your Dashboard  > Template > Edit HTML

    2. Add bellow code just before ]]></b:skin>

    <!-- Yahoo Smileys on Posts and Widgets by Don ZikkO Code Start-->
    img.bhsmly {
        height: auto !important;
        vertical-align: middle !important;
        width: auto !important;
        border:0px !important;
    }
    <!-- Yahoo Smileys Code End-->


    Adding JavaScript
    1. Add bellow code after ]]></b:skin>

    <!-- Yahoo Smileys Script on Posts and Widgets by Don ZikkO -->
    <script src='http://bloggerhack.googlecode.com/files/ysmileyspostwidget.js' type='text/javascript'/>
    2. Save the template, and done...
    Read more
    2

    Adding Yahoo Smiley on Blogger Threaded Comments

  • Don ZikkO
  • Adding Yahoo smiley is an old hack, but when we switch comment system to Blogger Threaded Comments (a new blogger comment system) the script doesn't work. One of Blogger from Indonesia, Kang Ismet has released a new script for Yahoo smileys on Blogger Threaded Comments.



     
    To add yahoo smileys emoticon on your comment, just follow three simple steps

    1. Adding CSS Code

    2. Adding JavaScript code

    3. Adding HTML code



    Adding CSS Code
    1. Go to Blogger Dashbord > Template > Edit HTML

    2. Click on Expand Widgets tick box

    3. Add bellow code just before ]]></b:skin>

    <!-- Yahoo Smileys by DonZikkO Code Start-->
    .bloggerhackysmile {
        background: none repeat scroll 0 0 #EFF5FB !important;
        font-size: medium !important;
        padding: 10px !important;
        text-align: left !important;
        font-weight:bold !important;
        font-size:11px !important;
    }
    img.bhacksmly {
        height: auto !important;
        vertical-align: middle !important;
        width: auto !important;
        border:0px !important;
    }
    <!-- Yahoo Smileys Code End-->


    Adding JavaScript
    1. Search for </body> tag

    2. Addlbellow code before </body> and Save Template.

    <!-- Yahoo Smileys Script Don ZikkO-->
    <script src='http://bloggerhack.googlecode.com/files/ysmiley_fixed.js' type='text/javascript'/>
    With two steps above, you have added Yahoo Smiley on your Blogger Comments. But smileys doesn't appear above your comment form. To show smileys and codes, follow the last instruction about Adding HTML code.



    Adding HTML code
    1 Search for bellow tag.

    <div class='post-footer-line post-footer-line-3'>
    code...
    </div>
    </b:includable>
    2.Add below code between </div>and </b:includable>

    <!-- Yahoo Smileys by Don ZikkO Star-->
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <div style='background-color:#FEF8EC; border:none; width:100%; padding:10px; height:100px; overflow:auto;'>
    <div class='bloggerhackysmile'>
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif'/> :)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/2.gif'/> :(
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/3.gif'/> ;)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif'/> :D
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/5.gif'/> ;;-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/7.gif'/> :-/
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/8.gif'/> :x
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/10.gif'/> :P
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/11.gif'/> :-*
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/12.gif'/> =((
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/13.gif'/> :-O
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/14.gif'/> X(
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/15.gif'/> :7
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/16.gif'/> B-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/17.gif'/> :-S
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/18.gif'/> #:-S
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/19.gif'/> 7:)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif'/> :((
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/21.gif'/> :))
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/22.gif'/> :|
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/23.gif'/> /:)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/24.gif'/> =))
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/25.gif'/> O:-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/26.gif'/> :-B
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/27.gif'/> =;
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/101.gif'/> :-c
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/100.gif'/> :)]
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif'/> ~X(
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/103.gif'/> :-h
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/104.gif'/> :-t
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/105.gif'/> 8-7
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/28.gif'/> I-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/29.gif'/> 8-|
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/29.gif'/> L-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/31.gif'/> :-a
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/32.gif'/> :-$
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/33.gif'/> [-(
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/34.gif'/> :O)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/35.gif'/> 8-
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/36.gif'/> 2:-P
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/37.gif'/> (:|
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/38.gif'/> =P~
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/39.gif'/> 
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/40.gif'/> #-o
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/41.gif'/> =D7
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/42.gif'/> :-SS
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/43.gif'/> @-)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/44.gif'/> :^o
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/45.gif'/> :-w
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/47.gif'/> 7:P
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/48.gif'/> 2):)
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/109.gif'/> X_X
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/110.gif'/> :!!
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/111.gif'/> \m/
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/112.gif'/> :-q
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/113.gif'/> :-bd
    <img alt='' class='bhacksmly' src='http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/114.gif'/> ^#(^
    <img alt='' class='bhacksmly' src='http://l.yimg.com/a/i/us/msg/emoticons/pirate_2.gif'/> :ar!
    </div></div></b:if>
    <!-- Yahoo Smileys by Don ZikkO End-->
    3. Save t he template, and you are done..
    Read more
    0

    How To Enable Threaded Comments on Blogger / Blogspot

  • Don ZikkO
  • Blogger Threaded Comments. Finnaly Blogger has launched new threaded comments. Threaded commenting should make it easier for you to respond to individual comments. Blogger threaded comment system is only two levels deep, meaning you can only reply to original comments, and not to comment replies . But I guess it’s a good start. Let's wait for new update from Blogger.





    How To Enable Threaded Comments on Blogger / Blogspot
    As mentioned on Blogger buzz official site, you have to setup your blog. “Blog Feed” set to “Full”, and are using “Embedded” comments, then you’re ready to start a discussion with your readers.



    Blogger New Interface
    1. Go to Dashboard , select your blog.

    2. Go to Settings > Posts and Comments

    3. Comment Location option set to Embedded





    4. Go to Settings > Other

    5. Allow Blog Feed option set to Full





    Blogger Old Interface
    1. Go to Dashboard, select your blog.

    2. Go to Settings > Comments

    3. Comment Form Placement option set to Embedded below post





    4. Go to Settings > Site Feed

    5. Allow Blog Feed option set to Full





    STILL NOT GETTING THREADED COMMENTS?
    If sou still not getting threaded comments, let's two alternative method for Standard Templates and Costumized Templates.



    Standard Templates
    1. Go to Design > Edit HTML

    2. Click on Revert widget templates to default link



    You can do this step for Costumized Templates, but this will Discard the all Changes Widget and revert to Default



    Costumized Templates
    1. Go to Template > Edit HTML

    2. Click on Expand Widget Templates check box

    3. Find the Following code

    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:include data='post' name='comments'/>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:include data='post' name='comments'/>
    </b:if>
    4. You will get two results. Replace both code with following code

    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    5. Save the Template!



    Still getting problem? Share your comment here!
    Read more