Breaking News
Showing posts with label blogging tricks. Show all posts
Showing posts with label blogging tricks. Show all posts

Add Google +1 Button To WordPress And Blogger


Google has officially launched +1 button before an hour. So here is our little guide on how to add the official Google +1 button on your WordPress and Blogger blog.
google plus for wordpress and blogger

For Blogger

Go to Edit HTML and search for <head>. Soon after that place the below code
<script type="text/javascript" src="http://apis.google.com/js/plusone.js">
</script>
Now the next step is to place the Google +1 in the post area. To do that search for <div class="post-header-line-1"/> or <data:post.body/> and place the below code immediately after it
<div style='float:right; margin-right:10px;'>
<g:plusone expr:href='data:post.url'></g:plusone>
</div>
Google offers four different types of button from which you can select any one of those. For more information kindly check the post footer

For WordPress

WordPress users go to header.php search for </head> and immediately before that place the following code
<script type="text/javascript" src="http://apis.google.com/js/plusone.js"></script>
Next up is placing the button where you actually want on your blog, so go to single.php and place the following code where you want it to display
<g:plusone href="<?php the_permalink(); ?>"></g:plusone>

Options

As I said, Google offers 4 different types of button
size="small"  - To display small size +1 button of 15px
size="medium" - To display medium size +1 button of 20px
size="large" - To display large size +1 button of 60px
For an example if you want large button, check this example
<g:plusone size="tall"></g:plusone>
 
For more details check out Google +1 resource from Google
Read more ...

Add Google Talk Chatback Badges in Blogger

 Add Google Talk Chatback Badges in Blogger and Stay Connected with Readers.

Add Google Talk Chatback Badges in Blogger and Stay Connected with your Blog Readers. A Google Talk chatback badge will let visitors to your web page chat with you. They'll be able to chat with you whenever you're signed in to Google Talk as yourgmailid@gmail.com.

Google Chatback badge
A Google Talk chatback badge allows others to chat with you even if they haven't signed up for Google Talk on their Google Account or if they don't have a Google Account. You can put the badge in your blog or website, and people who visit those pages can chat with you. The badge will display your online status (whether you're available to chat or not) and, optionally, your status message.


To use this badge, copy and paste the HTML code below into your web page. If the site that hosts your web page does not support direct HTML editing or embedded frames then click 'Edit' to select a style of badge that does not use frames. If you want to include your badge in an email message, you should use the 'Hyperlink only' or 'Url only' styles.

Add chat Gadget in blogger

Note: You need to be a Google Talk user to create a badge, and you'll need to be online and available (with a green ball next to your name) in Google Talk to enable people to chat with you.

Steps to Add Google Talk Chatback Badges in Blogger

#Step 1. Go to http://www.google.com/talk/service/badge/New and fill the necessary detail as described above, like Nick name, Badge style and Title of the badge.

Update Chat Widget

Now look for JavaScript code generated at the end of the page. Copy the JavScript code.

#Step 2. Log in to your Blogger Dashboard and Navigate to Design> Page Element.

Design-PageElement

#Step 3. Add a Gadget as HTML/JavaScript and Paste the Code we have copied in #step 2.

Add A Gadget as HTML JavaScript

#Step 4. Save your Template and Done!. Now Whenever your blog reader will open chat session you will have the chat box pop up visible in your Gmail in-box page (refer below sample screen shot).

Guest Chat box

Enjoy! and chat with your blog readers. If you need any help please Leave a response.
Read more ...

Surprise New Facebook Comments Box For Blogger

What is the new facebook comments features.
  • Threaded comments : reply to comments.
  • User network : now it’s displaying the comment author not only name, but his profile info as well
  • Permalink to specific comments : Permalinks have now been assigned to each comment so people can share links and be directed to specific comments.
  • Notifications : sent to users will also go to the permalink, making it easier to respond. For example, clicking on the notification below will take you to the permalink of the original comment.
  • 2 Color schemes, regular light, and the new dark colors.
now let’s do it, don’t worry, i know that must of you tried to add it to blogger blogs, with no result, but today you’ll see how to add it in really easy steps and it’s 100% working. but please be careful and pay attention for all the details.
This tutorial is updated.
Step 1. Disable Default Comments.
The first thing you should do it to disable blogger default comments. because you don’t want to have 2 comments forms.
go to your blogger account, navigate to settings >> comments
and next to comments field choose Hide, then scroll down and click Save Settings
Step 2. Generate your Facebook App ID.
now you should generate your own facebook app id, it’s really easy and one step process,
just go to this page, facebook developers
then click + Set Up New Application
enter your application name, ( you can type any name )
and check agree and click Create Application
then click on Connect tab (on the left tabs-list) or see the next image.
facebook comments box for blogger
and fill the following info.
Connect URL : Enter your blog url and you must enter it with an ending dash. (for example: http://myblogname.blogspot.com/) .
Base Domain you must type blogspot.com
then click strong>agree and click Save Changes
on the next page facebook will generate you alot of info. you’ll need only one line, it’s App ID:
just copy it and keep any where, we’ll need it in the next steps. please see the following image to see where you’ll find your facebook App ID:.
facebook comments box for blogger
Step 3. Codes To Add To Your Template.
you must add the following codes to your blogger template to ensure that the comments box will work for your blog in the right way.
and in this step we’ll add the following codes,
  • xmlns attribute
  • SDK script
  • Open Graph protocol tags

  • Adding the xmlns attribute :
please go to your blogger account again, and navigate to, layout >> edit html >> and check Expand Widget Templates
then find the following code,
<html
you’ll find it on the top of your code. second or third line, and after it add the following code,
xmlns:fb='http://www.facebook.com/2008/fbml'
you must type a space before it and after it,
here is an example.
<html  xmlns:fb='http://www.facebook.com/2008/fbml'  expr:dir='data:blog..............2005/gml/expr'  >
  • Adding the SDK script Code :
search for
<body>
and after it add the following code,
<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
    FB.init({
      appId  : 'YOUR   APP ID',
      status : true, // check login status
        cookie : true, // enable cookies to allow the server to access the   session
      xfbml  : true  // parse XFBML
    });
  };

    (function() {
    var e = document.createElement('script');
      e.src = document.location.protocol +   '//connect.facebook.net/en_US/all.js';
    e.async = true;
      document.getElementById('fb-root').appendChild(e);
    }());
</script>
but please don’t forget to change YOUR APP ID to your app id ( you got it in the previous step ).
  • Adding the Open Graph protocol tags:
copy the following code.

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<meta   expr:content='data:blog.pageTitle' property='og:title'/>
<meta   expr:content='data:blog.url' property='og:url'/>
<b:else/>
<meta   expr:content='data:blog.title' property='og:title'/>
<meta   expr:content='data:blog.homepageUrl' property='og:url'/>
</b:if>
<meta   content='MY-SITE-NAME' property='og:site_name'/>
<meta   content='http://google.com/help/hc/images/logos/blogger_logo.gif'   property='og:image'/>
<meta content='YOUR-APP-ID'   property='fb:app_id'/>
<meta content='YOUR-FACEBOOK-PROFILE-ID'   property='fb:admins'/>
<meta content='article'   property='og:type'/>
and change the colored text to the following,
Change MY-SITE-NAME with the one you want to appear when a user likes a page. (Gil likes Helping on Facebook)
Changehttp://google.com/…/blogger_logo.gif with your blog logo, or remove the all tag if you don’t want it.
Change YOUR-APP-ID with your application ID number.
Change YOUR-FACEBOOK-PROFILE-ID with your own facebook user profile ID.
after making this changes add the above code just before
</head>
now we finished adding the facebook codes to your template, please don’t touch anything and continue to the next step.
Step 5. Adding the Comments Box to your blogger template.
please find the following code.

<data:post.body/>
 
and after it, please paste one of the following codes.
For Light Comments box ( like the one in the demo )

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<p align='left'><img alt='' class='icon-action' height='51' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7U4Xi-Bqmwi55bYUnj4o4muCkN82hmfp6ewfVO61fZTVjE_8fwp8I3SkzwCGYssa9Dp7cGzTo8l9U_gdsMNlhooeO4CYJJDYDQhfav-IyksVvHtw3cI7TAlkrzKql6fGEWvj4qTO7cIk/' width='331'/></p>

<script src='http://connect.facebook.net/en_US/all.js#xfbml=1'/>
<div><fb:comments width='450' expr:title='data:post.title' expr:href='data:post.url'   expr:xid='data:post.id'/></div>
<div style='background-color: #f2f2f2;border: solid 1px #cccccc; font-size:10px; padding:3px;width:100%;'> <img alt='' class='icon-action' height='16' src='http://allblogtools.com/imgup/1-2010/allblogtools-blogger-templa.gif' width='16'/> <b><a href='http://www.allblogtools.com/' target='_blank' title='blogger templates'>AllBlogToolsFacebook comments for blogger</a>  brought to you by <a href='http://www.allblogtools.com/' target='_blank' title='blogger templates'>AllBlogTools.com , Get Yours?</a></b></div>
</b:if>

For Dark Comments box ( If you prefer to display the comments box in a dark colors. )

<data:post.body/>
 
and after it, please paste one of the following codes.
For Light Comments box ( like the one in the demo )

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<p align='left'><img alt='' class='icon-action' height='51' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7U4Xi-Bqmwi55bYUnj4o4muCkN82hmfp6ewfVO61fZTVjE_8fwp8I3SkzwCGYssa9Dp7cGzTo8l9U_gdsMNlhooeO4CYJJDYDQhfav-IyksVvHtw3cI7TAlkrzKql6fGEWvj4qTO7cIk/' width='331'/></p>

<script src='http://connect.facebook.net/en_US/all.js#xfbml=1'/>
<div><fb:comments width='450' expr:title='data:post.title' expr:href='data:post.url' colorscheme='dark' expr:xid='data:post.id'/></div>
<div style='background-color: #f2f2f2;border: solid 1px #cccccc; font-size:10px; padding:3px;width:100%;'> <img alt='' class='icon-action' height='16' src='http://allblogtools.com/imgup/1-2010/allblogtools-blogger-templa.gif' width='16'/> <b><a href='http://www.allblogtools.com/' target='_blank' title='blogger templates'>AllBlogToolsFacebook comments for blogger</a>  brought to you by <a href='http://www.allblogtools.com/' target='_blank' title='blogger templates'>AllBlogTools.com , Get Yours?</a></b></div>
</b:if>

To change the width of your comments box, please change 450 to what ever you want, it’s in pixels,
and now please click Save Template , then check your blog. i wish it looks great and works perfectly.
Read more ...

Google Transliteration API In Regional Language Blogger Blogs -How to

How to Use Google Transliteration Api In Regional Language Blogger Blogs

What is Transliteration ?
Transliteration is the process of phonetically converting a word written in one script into another. Transliteration should not be confused with translation, which involves a change in language while preserving meaning. With transliteration, it is the sound of the words that are converted from one alphabet to the other.

The majority of blogs are in English.Though there are many regional languages spoken but there are a few blogs published in regional languages. The main reason being the unavailability of editors for regional languages.

Blogger Platform is available in almost all Languages. But is not available to Write or Commenting in regional language for visiters.
This plugin offers language transliteration for visitors to Comment or to Write in regional language

The Transliteration API currently supports transliteration from the English version to the scripts of the following languages:
Amharic, Arabic, Bengali, Greek, Gujarati, Hindi, Kannada, Malayalam, Marathi, Nepali, Persian, Punjabi, Russian, Sanskrit, Serbian, Tamil, Telugu, Tigrinya and Urdu.

Here is an Example of Textarea to Write Hindi

Type in Hindi (Press Ctrl+g to toggle between English and Hindi)



How to Add this Transliteration Text Box to Blogger?
There are two steps
a.Adding Script Code
b.Adding Html Code

Adding Script Code
1. Go to Blogger Dashboard > Design > Edit HTML
2. Tick on Expand Widgets Check box
3. Find </head> tag and place Bellow Code before It!
<script src="https://www.google.com/jsapi" type="text/javascript">
</script>
<script type="text/javascript">
    google.load("elements", "1", {
        packages: "transliteration"
    });

    function onLoad() {
        var options = {
            sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH,
            destinationLanguage: [google.elements.transliteration.LanguageCode.HINDI],
            shortcutKey: 'ctrl+g',
            transliterationEnabled: true
        };

    };
    var control = new google.elements.transliteration.TransliterationControl(options);
    control.makeTransliteratable(['transliterateTextarea']);
    }
    google.setOnLoadCallback(onLoad);
</script>

Change Destination language code 'HINDI' with yours and it must be in Block Letters

Available Languages :-
AMHARIC
ARABIC
BENGALI
GREEK
GUJARATI
HINDI
KANNADA
MALAYALAM
MARATHI
NEPALI
PERSIAN
PUNJABI
RUSSIAN
SANSKRIT
SERBIAN
TAMIL
TELUGU
TIGRINYA
URDU


Adding HTML Code
This is a HTML code, and you can add this that where it you want (i.e in Sidebar, in Contact Form, Or in above Comment Form etc,.)
<div class="Google-transliterate-Way2blogging">
    Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br>
    <textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea>
<span style="font-weight:bold;font-size:10px;float:right;margin:5px;"><a href="templates-widgets.blogspot.com/">+Grab this</a></span>
</div>


How to add this Text Box Above Blogger Comment Form?
1. Search bellow two tags
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/>
2. In between these two tags Put above HTML Code that i am given.

Thats all! 
Do u like it.than share it
Read more ...

Add Website Speed Test Tool Directly on Your Website

How To Add Website Speed Test Tool Directly on Your Website
1.Login to your blogger Dashboard and go to Desing --> Page Elements.

2.Click on 'Add a Gadget' on the sidebar.

3.Select 'HTML/Javascript' and add the one of code given below


<!-- iWEBTOOL - www.iwebtool.com - Website Speed Test -->
<form method="get" name="pageform" action="http://www.iwebtool.com/tool/tools/speed_test/speed_test.php"  target="pageframe" onsubmit="return validate(this);">
<table border="0" style="border-collapse: collapse" width="100%">
<tr>
<td height="91" valign="top">
<table class="tooltop" style="border-collapse: collapse" width="100%" height="76">
<tr>
<td>
<table border="0" style="border-collapse: collapse" width="100%" cellspacing="5">
<tr>
<td valign="top" colspan="5"><b><font size="2">Your domain(s): </font></b><font size="1">Enter each address on a new line (Maximum 10)</font></td>
</tr>
<tr>
<td valign="top" colspan="4">
<textarea rows="11" name="domain" style="width: 100%"></textarea></td>
<td >
&nbsp;</td>
</tr>
<tr>
<td >
<input type="submit" value="Check!" style="float: left"></td>
<td >
<font size="1">(eg. iwebtool.com)</font></td>
<td >
&nbsp;</td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td >
<iframe name="pageframe" width="100%" height="251" class="toolbot" frameborder="0">
</iframe></td>
</tr>
<tr>
<td height="39">
&nbsp;</td>
</tr>
</table>
</form>
<script language="JavaScript">
function validate(theform) {
if (theform.domain.value == "") { alert("No domain provided"); return false; }
return true;
}
</script>
<p><a href="http://www.iwebtool.com/" target="_blank"><font size=1>Powered by iWEBTOOL</font></a></p>
<!-- iWEBTOOL - www.iwebtool.com - Website Speed Test -->


Look at the Result below


Your domain(s): Enter each address on a new line (Maximum 10)




(eg.templates-widgets.blogspot.com)



Powered by iWEBTOOL


4. Now Click On Save 'JavaScript' You are done.

Cheers
Read more ...

Redirect Blogger Blogspot into .com Domain

Blogger by default are leaving the URL domain into .blogspot.com, for user who wants to have a customized .com domain, they will most likely purchase it and redirect it into their blogspot domain, So that they will brand themselves with the .com domain

In this post, i'm going to cover the steps by steps to redirect from Blogger blogspot into .com domain. The purposes of this post was to give a blogger user a new customized .com domain



1. Go to Your Blogger Dashboard Layout, click on Edit HTML and check "Expand Widget Templates" box

2. Search for these lines
[b:include data='blog' name='all-head-content'/>

3. Add this code below it
[meta content='0;url=http://enter your new URL here' http-equiv='refresh'/>

4. Save it and you're done, try to test it with your blogspot domain and see if its redirect properly to your .com domain.


Another ways is to redirect your GoDaddy url to Blogger

1. Go to Your Blogger Dashboard, click on Publishing tab and click again on Custom Domain


2. Type in the URL of your new website in the Domain text box, don forget to change the domain into different extension, in case you are using other domain than .com

3. Login to your Godaddy Hosting account and click on Domain, click one of the domain that you would like to manage

4. On the next screen, check the domain box and you should see a new option on the right top side under the box tab that says "Total Control and MX Records link"

5. Once you see it, click on that. On the next screen, you can either add a new CName if only your host does not have WWW. Otherwise, click the existing www cname and make it point to the ghs.google.com link.

6. Go to your Command prompt (Start > Run, type cmd for WinXP and command for Win2000). Ping your blogger account by type in ping yourblog.blogspot.com. Note down the IP address that shows up

7. Next, you need to ping your .com domain. Afterward, note down the IP address that shows up.

8. Now you have to associate this IP Address with your A Host in your godaddy account. Go to the same manage domains page and your total dns control panel and edit your A Host or @ and make it point to the IP address that you noted down on step #6. If you decide to use .com domain for hosting your own blog such as Wordpress then switch back the IP Address to your .com IP address at step #7
Read more ...

Make Blogger Blog DoFollow or NoFollow

Make Blogger Blog  DoFollow or NoFollowlast time i publishBlogger Add Reply Tag To Comments today it time for another tricks to get more back links .Now to Make Blogger Blog Comment DoFollow or NoFollow is very easy, before that let's look into what the hell is dofollow and nofollow:


Google announced in early 2005 that hyperlinks which contains rel="nofollow" attribute would not influence the link target's PageRank. In addition, the Yahoo and Bing search engines also respect this attribute.


Make Blogger Blog Comment DoFollow or NoFollow

nofollow is an HTML attribute value used to instruct some search engines that a hyperlink should not influence the link target's ranking in the search engine's index. It is intended to reduce the effectiveness of certain types of search engine spam, thereby improving the quality of search engine results and preventing spamdexing from occurring.



You might be aware that my blog is a DoFollow blog, i always look after my readers and commentators, we linkback to their site or blog from their comments (If not red flag of spam is rise), we follow strict spam policy. so as me so many other blogger also want to repay their readers with removing nofollow attribute.


How to Make Blogger Comments DoFollow:

First I would suggest you to make a backup of your blogger blog, we will edit your blog template to add dofollow attribute to your blogger comment section.


Step 1. Login to Blogger Dashboard.

Step 2. Navigate to Layout >> Edit HTML >> Expand Widgets Template.

Step 3. Search for the following code in your template.

<dl id=’comments-block’>
<b:loop values=’data:post.comments’var=’comment‘>
<dt class=’comment-author’expr:id=’”comment-” + data:comment.id’>
<a expr:name=’”comment-” +data:comment.id’/>
<b:if cond=’data:comment.authorUrl’>
<a expr:href=’data:comment.authorUrl’ rel=’nofollow’><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
<data:commentPostedByMsg/>
</dt>

Step 4. You can see a code in red and bold font there. It’s rel=’nofollow’ and this piece of code adds Nofollow attributes to your blog. Detele the code rel=’nofollow’ (or you can remove only no, making it rel=’follow‘) and save the template.

Step 5. Click on Save to save the changes.

Step 6. You are done.
Read more ...

commenting on others blog is good

Imagine if as a blogger, when you leave one comment on any article or any high PR website on the web, 100-1000 people are interested with it and visit your website checking your articles then become your loyal readers.
Comments are a very common yet powerful socializing tool in blogosphere, their impact of can be very astonishing sometimes. It makes good comments have great influences, that is why every bloggers should do it. Commenting is awesomely good for bloggers because of many reasons:Mainly comments act as a backlink..
Read more ...

How to Change Newer Posts, Older Posts and Home Links with image In Blogger/blogspot

Change Older Post And Newer Post Link With icons or images in Blogger is very nice trick to make your blog look very beautiful.As it make your blog look more beautiful than before if you are using good icons to be get replaced with older post or newer post or home link.Today i will tell you how easy it is to hide those links and place your any image you like.

Now how to change these links with icons is very easy.

These are the links below pointed by arrows to be get replaced in picture which i was talking about
1. Log in to Blogger
2. Go to Layout -> Edit HTML -> Click on "Expand Widget Templates"
3. Now search (CTRL+F) for this code in the template code:

<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</span>
</b:if>

<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</span>
</b:if>

<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
<b:else/>
<b:if cond='data:newerPageUrl'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
</b:if>
</b:if>

</div>
<div class='clear'/>
</b:includable>
Find the code in red lines and replace them with lines in green following each red line-
.
<data:newerPageTitle/>
Replace with
<img src='http://bandofgirls.googlepages.com/Newer_post_icon.png'/> 
<data:olderPageTitle/>
Replace with
<img src='http://bandofgirls.googlepages.com/older_post_icon.png'/> 
<data:homeMsg/>
Replace with
<img src='http://bandofgirls.googlepages.com/home_icon.png'/>


Please Host these images to your hosting image service and change these urls with yours as they may exceed bandwidth.

Now preview it . If its Ok
You can save your template.

How the links will appear after changing these codes -


Read more ...

Highlight Blog administrator/author Comments In BlogSpot Blogs

If you want to display your own comments, with a different background or text color or in any other customized way, then here's a simple hack for doing that.
After doing the coding work, all the comments made by you on your blog will get highlighted.
To do this;
Log in to Blogger, go to Layout -> Click on "Edit HTML" tab.
Then click on "Expand Template Widgets"
Read more ...

Increase Page Views on Your blogger/blogs

First of all why would you want to increase your blog’s pageviews? Some reasons  by me (laxman) are
Stickiness – the more pages a reader views the increased chance of them coming back are.
Revenue – more and more of the ads that we are running on your blogs are impression based ads (i.e, the more times the ads are seen the more that is earned).
Read more ...

New-Create Static Pages in Blogger

Recently, Blogger launched the much awaited Blogger Pages Feature.
So, lets see how to Create Static Pages in Blogger.

1. Sign into Blogger Draft (draft.blogger.com)

2. Click on New Post as usual.

click on new post in blogger draft
Read more ...

Arrange your Comments Avatar with CSS in blogger

t's been quite long since I made a post in this blog. I had a lot of problems with my net connection(still not fixed) and modem. Still, I found some time today, to post about a new feature introduced by blogger, that is, avatars on blogger comments. Blogger is introducing new features daily on account of its 10th birthday celebration. Every blogger wanted to display avatars like the ones,
Read more ...

Automatic read more with image hacked for blogger

Automatic read more with image hacked for blogger:You have to specify the number of characters after which the post will be truncated. If you select it as 500, then all your posts in the home page will show only first 500 characters.
And moreover this hack has already been modified to show the first image from the post, as a thumbnail along with the truncated post.

I called this hack as Automatic read more with image hacked for blogger, because through this hack you not only add the "Read More" tag to your posts, but it also optimizes your "Archive pages" (Feb 2008, Oct 2008, etc.) for search engines and
Read more ...

6 Traffic Generation Techniques

traffic,traffic generation,blog trafficGenerating traffic to your blog, whether new or old, is one task most webmasters are unable to do in the right way and are still struggling in traffic generation. They often try the wrong techniques and then get disappointed by lack of results. This is one of the reasons why so many bloggers give up so quick.
However, the point is… Generating traffic to your blog is amongst the easiest task you’ll ever come across. All it takes is a bit of reading on the internet and then adding your own creativity and mixing it. And of course, do it with dedication. If you’re going to do it as a job that needs to be done and get over with, then you won’t succeed at it.
Read more ...

free recommended wordpress plugins for better wordpress blog

It has not been so much time that I have been transferred to wordpress but I came to knew a lot about it and I find it more interesting and easy than Blogger.Here are lists of  26 wordpress Plugins that are strongly recommended for wordpress users.
1.   All in one SEO Pack


all in one seo pack screenshot 300x107 26 most recommended wordpress plugins for better wordpress blogThis is a single pack wordpress plugin which does all the optimization of your blog Search Engines.This Plugin automatically optimizes your title for search engines and
Read more ...

seo hacked/ use post level as meta tags

SEOMeta keywords are very important to do better SEO for your blog.. And you should know that Search engines look for different description and keywords for each page of your site. If you put the same thing across all pages of your site, search engines may regard this as spam.

I saw lots of examples on how to add meta title/description based on the post title for Blogger/Blogspot. but I couldn't find one for using labels/Tags as meta keywords for each post.

After searching I found [Changing the Blogger Title Tag] which describes how to use the post title as the header. although now that could be done by less code like this
<!-- Post/Archive Page -->
<b:if cond='data:blog.pageType != &quot;index&quot;'>
   <title><data:blog.pageName/></title>
<!-- Index Page -->
<b:else/>
   <title><data:blog.pageTitle/></title>
</b:if>


So instead of using "data:blog.pageTitle" you use "data:blog.pageName" for post & archive pages. Otherwise, for pages like index/label pages "data:blog.pageTitle" will do the job.

But as far as I see at the very brief Blogger documentation. This is the only way to use labels as meta keywords..
Enough talking.. Here is the code to do it.. which you should place instead of the Head tag..!
The Code is commented and it also outputs the Title and Meta Description tags(using Post title) for your convenience..
<!--::::::::::: Block1: Output post meta keywords -->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
   <b:section id='meta1' showaddelement='no'>
   <!-- widget must be a of Type = 'blog' to have posts data exposed, and must have a unique id -->
   <!-- Empty Includables(functions) to output nothing, You must keep them ): -->
   <b:widget id='Blog2' locked='no' type='Blog'>
      <b:includable id='nextprev'/>
      <b:includable id='backlinks' var='post'/>
      <b:includable id='post' var='post' />
      <b:includable id='status-message'/>
      <b:includable id='comment-form' var='post'/>
      <b:includable id='backlinkDeleteIcon' var='backlink'/>
      <b:includable id='postQuickEdit' var='post'/>
      <b:includable id='commentDeleteIcon' var='comment'/>
      <b:includable id='feedLinks'/>
      <b:includable id='feedLinksBody' var='links'/>
      <b:includable id='comments' var='post'/>
      <b:includable id='main' var='top'><!-- Main Function of Any widget comes with ID 'main' -->
         <!-- Loop Page Posts (only 1 in a post page )-->
         <b:loop values='data:posts' var='post'>
            <b:if cond='data:post.labels'>
               <!-- If the post has labels, make Meta keywords by looping lables -->
               &lt;meta name=&quot;keywords&quot; content=&quot;<b:loop values='data:post.labels' var='label'><data:label.name/><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if></b:loop>&quot; /&gt;
            </b:if>
         </b:loop>
      </b:includable>
   </b:widget>
   </b:section>
</b:if>
<!--::::::::::: Block1 END -->

<head> <!-- THE HEAD -->

 

<!-- must include(called) here to output other head sub elements -->
<b:include data='blog' name='all-head-content'/>

<!--::::::::::: Block2: Output Index Title,keywords,decription and Post Title,description -->
<!-- Post/Archive Page -->
<b:if cond='data:blog.pageType != &quot;index&quot;'>
   <title><data:blog.pageName/></title>
    <meta name='description' expr:content='data:blog.pageName' />
<!-- Index Page --> 
<b:else/>
   <title><data:blog.pageTitle/></title>
   <meta name='keywords' content='your,blog,keywords!!' />
   <meta name='description' content='your blog description!!' />
</b:if>
<!--::::::::::: Block2 END -->


Some Issues you should be aware of ):
1- XHTML validation will give your warnings about these issues :
  • Meta Keywords tag Appears before the Head tag.
    Why we have to put that code before the head tag? you have to ask ):
    well.. You can't place a widget outside of a section, you can't place a section inside head tag. and Post lables must be called inside of 'Blog' widget.
  • Meta Keywords will be surrounded with Div tags which should not appear there.
    why? Cause Widget and sections Tags are auto. converted to div tags by Blogger..!
2- Some Meta tags analyzers will warn you that they don't see meta keywords (Cause it was outside of the head).. But Most search engines would be able to find your meta keywords..
As you can see that's why I'm separating the code into 2 blocks:
first one
outside the Head tag to output Post Meta keywrds.
Second one inside the Head Tag to output Title and meta description of all pages and meta keywords for index page; without the need of a widget. And in case an engine didn't like those meta keywords, you still have the title and description where they should be.

3- After Adding that code , you will get errors when trying to do anything in the 'Page elements' and clicking save. the Only solution is cut Block1 from the template & save, do what you need in 'page elements' & save. paste Block1 back in the template.
It is the only way, until Blogspot pay attention to the issue!

To edit your Blogspot template
  • Go to Layout > Edit HTML > Check 'Expand Widget Templates', and don't forget to save a backup before you do anything..
  • Don't forget to remove those comments.
  • Replace those Static Blog meta tags content with real ones.

Update #1
I've adjusted the code to show a title in archive page that is different than index page title. as requested by Silver Bullet.

Update #2
I corrected the code to show different title in label pages. It's considered as an 'index' page but it has a different title. So, we should give it a different title! thanks to GunGz
Read more ...

make blog index quickly by seo/google

Having Trouble to get your blog indexed  Or your blog is indexed slowly by google and other search engines.. Dont worry I will show you 5 Simple Steps to Get Your Blog Indexed Or updated By Search Engines quickly..


Indexing by major search engine such as Google is really important to get traffics. It’s an important SEO factor and by getting indexed by Google means that your blog article is exposed to whole world.

First check whether you site is index by google or not. if not or not sure than go through my Adding Sitemap To Google article HERE ..


Adding Your Blog To Social Bookmarking Sites



There is a lot of bookmarking sites.  choose some higher PageRank, also known as PR, social bookmarking sites like Digg, Delicious, StumbleUpon to submit your blogs because Google bots frequently visits theses high PR sites looking for new content in it.
So, when Google spiders start crawling the website and finds your blog link there then it will automatically follow that link and will crawl to your blog to start indexing.


Adding your Blog To Directories




Adding Your Blog To Blog Directories Dramatically increases Your Sites Traffic as Well As Page Rank


I think I don’t have to explain this one as this formula works just works like the above techniques. Some of them are Technorati, BlogCatalog, My Blog Log.


Commenting On Do Follow Blogs



Dofollow” don’t exist but it has a meaning. That is, it does not contain rel=”nofollow” tags in their comment section. So start commenting whenever you come across “dofollow” blogs under your niche. Like my blog is under "dofollow" rule.

Whenever Google comes across to that do-follow blog and found your site’s address in the comment sections, it will automatically follow that link and starts indexing your blog at the same time. But remember, don’t spam, because, the administrator will delete that comment in no time. Comments such as just “Thanks” or adding E-mail address or adding links to spam sites and etc are always considered as spam comments.

Read more ...

create readmore or auto expandable post in blogget

If we go back to the method of creating auto expandable posts it has really changed a lot.First we have to use <span class=”fullpost”> tags in each posts for creating expandable posts.This method was really boring and contains lots of drawbacks.Therefore there should be new easy method for creating expandable posts and then new method is here.
blogger+auto+readmore Create auto expandable posts (or auto readmore) in blogger with image thumbnails
This new method of creating auto readmore helps you to create all of your posts expandable from the first post of your blog.It also shows the thumbnail of the post in the front page.You dont have to use any tags for it.You just have to add some codes to your blog and the work is done.If you want to create these types of expandable posts the follow the simple steps below.
Before you perform any hack remember to backup your template so that you might restore your previous template in future.For this click download full template in your blogger Edit HTML page.
First of all search for the following code in your blog Edit HTML page.
<data:post.body>
Now in the second step replace the above code with the following block of codes.

<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary" + data:post.id'>
<data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>
<span class='rmlink' style='float:right'>
<a expr:href='data:post.url'>Read more>></a></span></b:if>
<b:if cond='data:blog.pageType == "item"'>
<data:post.body/>
</b:if>
Now in the last step paste the following block of code just above </head> in your blog.

<script type='text/javascript'>
summary_noimg = 450;
summary_img =350;
img_thumb_height = 100;
img_thumb_width = 100;
</script>
<script src='http://deineshd.110mb.com/read-more_auto.js' type='text/javascript'/>
Now Save your Template to see the result.
Read more ...

hacked alexa traffic rank for blogger



quick and easy steps to improve you blogger blog traffic ranking, as we all know alexa.com is a company on the internet
that gives every single site on the internet it’s own rank.
there is web sites ranked 24.000.000 and another ranked under the 100.000
and the second is all what we need.
when i started publishing this site. my alexa rank was 6.300.000.
but now, thank god it is just 993.778, and it’s increasing day by day.
alexa updates the rankings every 4 or 5 days. and you can monitor the changes that happen to your traffic rank and try to improve it always.
and here i gonna tell you some easy, cheap, fast steps that will make your rank increase quickly. and it works for me.
1.
the first one here should be the most famous advice when it comes to alexa traffic rank increasing. installing alexa toolbar.and when you browse your blog every day. Ask your friends to do the same. Every time you browse your blog, Alexa Toolbar will communicate your visits to the Alexa Ranking Engine, which will update your ranking.
actually alexa depending on the toolbar to arrange the rankings.
2.
set you blog as the home page for your browser.
and try to do it with all your friends and every computer you can control.i mean if you work at big company and there is big number of computers there. if you can set all browsers home page to you blog url, that’s going to be great.
3.
try to add webmasters category to your blog, because all webmasters already installed alexa toolbar, and that’s must affect your rank when they visit your blog with alexa toolbar installed.
4.
Increase traffic to your blog. That is what alexa is all about. and when you visit any blog or forum with related content, leave your link there as comment or reply.
5.
Add alexa rank widget to your blog. alot of people did it and it works for them.
6.
Right article about alexa and encourage people to download the alexa toolbar.
i hope you all good luck and higher traffic rank.
Read more ...
Designed By GP